vb.net中如何加延时的简单介绍

VB的延时1秒命令怎么写,在线给分VB提倡的是用定时器控件(Timer)的方法 。首先在窗体放入一个Timer1和Command1 , 然后输入以下代码:
Private Sub Command1_Click()
Timer1.Interval = 1000
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
MsgBox "这个对话框是点击按钮1秒钟后弹出来的"
Timer1.Enabled = False
End Sub
此外还可以用API函数Sleep来延时,或者利用循环结合时间函数来延时,但它们都容易造成系统阻塞,所以不建议使用 。
使用定时器控件还有一个最大好处,就是在延时期间你的程序还可以继续运行处理其他事务(比如鼠标点击、键盘输入等) 。而其他方法产生的延时效果 , 在延时期间就只能傻等,什么也做不了,甚至还有可能影响到其他程序 。
怎么在vb 中加入延时命令在窗体添加一个Timer和一个Command
Private Sub Command1_Click()
Me.Timer1.Interval = 30 * 1000'定时30秒
Me.Timer1.Enabled = True
Do
If Not Timer1.Enabled Then MsgBox "时间到!": Exit Sub
DoEvents
Loop
End Sub
Private Sub Form_Load()
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
【vb.net中如何加延时的简单介绍】Me.Timer1.Enabled = False
End Sub
VB.NET的几种延时方法Imports System.Threading
Thread.Sleep(1000)’延迟1秒
2.PauseWait(1000)’延迟1秒
Public Sub PauseWait(ByVal HowLong As Long)
Dim tick As Long
tick = My.Computer.Clock.TickCount
Do
My.Application.DoEvents()
Loop Until tickHowLongMy.Computer.Clock.TickCount
End Sub
vb.net,如下代码 , 我想在MsgBox("A")和MsgBox("B")之间延时3秒(两个msgbox要在同一个Sub)Private Sub Button1_Click()
MsgBox("A")
Threading.Thread.Sleep(3000)
MsgBox("B")
End Sub
如果暂停的3秒有影响,就给他开一个线程:
Private Sub Button1_Click()
Dim th As New Threading.Thread(AddressOf MsgBoxProc)
th.Start()
End Sub
Private Sub MsgBoxProc()
MsgBox("A")
Threading.Thread.Sleep(3000)
MsgBox("B")
End Sub
关于vb.net中如何加延时和的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息 , 记得收藏关注本站 。

    推荐阅读