在VB.NET中调用hide方法后我可以使用backgroundWorker吗?

时间:2013-04-22 20:12:30

标签: .net vb.net sqlite backgroundworker vb.net-2010

我有一个关于背景工作者的简单问题。我从未使用它,所以我不知道它是如何工作的。 我正在使用VB.NET express 2010。 我只想在表单的backgroundWorker中进行数据库监控。

以下是我想要实现的一些事情。

  1. 使用select语句监控SQLite DB文件。
  2. 从数据库中提取数据并将其放入变量中。
  3. 将值与某些条件进行比较,如果匹配,则将值传递给另一个表单并调用它。
  4. 继续监控。
  5. 我希望后台工作人员在调用表单的form.hide()方法时执行此操作。
  6. 请提供宝贵的回复,如果不是正确的方法,请另外建议。

1 个答案:

答案 0 :(得分:1)

隐藏表单不会停止后台工作程序 - 实际上关闭表单不会停止它 - 表单将等待后台工作者isBusy属性在继续之前报告错误。


更新以回应新评论

您可能最好使用计时器并将其他工作卸载到新线程,请参阅下面的示例。如果操作尚未完成,则If _worker is nothing将停止重新启动操作。请务必在流程结束时设置_worker = nothing,以便工作正常。

此外,我只是快速输入,可能无法开箱即用,但应该给你一个起点。

Imports System.Threading

Public Class Form1

    Dim _worker As Thread

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

        Timer1.Interval = 10000
        'interval in milliseconds so 1000ms = 1 second / above 10000 = 10 seconds

        Timer1.Enabled = True
        Timer1.Start()

    End Sub

    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
        StartWorkerThread()
    End Sub

    Private Sub StartWorkerThread()

        If _worker Is Nothing Then
            _worker = New Thread(AddressOf myWorker)
            _worker.Start()


        End If

    End Sub

    Private Sub myWorker()
        'do your work here...use an event or a delate to fire another sub/function on the main thread if required

            'when finished
            _worker = nothing
            'Important! This will allow the operation to be started again on the timer tick
        End Sub

    End Class