-2

所以我有这个脚本,可以通过 WebBrowser 工具上的网页填写某些表格。它需要填写这些表格 500 秒,然后执行我指定的任何操作。我可以做什么让脚本在 Visual Basic 上运行 500 秒?

4

1 回答 1

3

使用Timer控件,如下所示:

  • Timer将一个控件从工具箱拖放到您的表单上。
  • 将计时器的间隔设置为 500 秒(500,000 毫秒)。
  • 启用计时器。
  • 启动计时器。
  • 创建计时器完成时要执行的方法。

假设您这样做是为了响应按钮单击,如下所示:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Timer1.Interval = 500000
    Timer1.Enabled = True
    Timer1.Start()
End Sub

Private Sub TimerEventProcessor(myObject As Object, ByVal myEventArgs As EventArgs) Handles Timer1.Tick
    Timer1.Stop()

    ' Do something to indicate the timer is up, message, etc. or start a new timer, etc. 
End Sub 
于 2013-09-28T04:55:17.380 回答