不對(duì)。步驟如下:
創(chuàng)新互聯(lián)成立與2013年,先為海寧等服務(wù)建站,海寧等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為海寧企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
添加一個(gè)label標(biāo)簽名字label1 用來顯示時(shí)間
再添加一個(gè)timer控件 名字timer1 interval屬性=1000 用來計(jì)時(shí)
窗體添加代碼
Dim t As Date '用來記錄時(shí)間
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As _
System.EventArgs) Handles Timer1.Tick
t = t.AddSeconds(1)
Label1.Text = "登錄時(shí)間:" t.TimeOfDay.ToString
End Sub
MessageBox里的Show里沒有自動(dòng)關(guān)閉的方法,但是你可以自定義一個(gè)MessageBox,MessageBox就是一個(gè)窗體,你新建一個(gè)窗體Form2,添加一個(gè)public屬性message和一個(gè)定時(shí)器timer1,timer1的interval設(shè)置成你想要的時(shí)間,在Form2的Load事件啟動(dòng)timer1,Timer1_Tick事件里關(guān)閉窗口Me.Close(),然后在需要顯示Messagebox的時(shí)候,在主窗口Form1里設(shè)置messge屬性,然后用show方法彈出窗口就可以了。
Form1程序:(添加了一個(gè)Button1)
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim f2 As Form2 = New Form2
f2.Message = "提示"
f2.ShowDialog()
End Sub
End Class
Form2程序:(添加了一個(gè)Label1顯示信息和一個(gè)Timer1用于計(jì)時(shí),F(xiàn)orm2可以自定義成你想要的樣式,標(biāo)題,按鈕,窗體樣式等)
Public Class Form2
'自定義屬性 顯示提示信息
Public WriteOnly Property Message As String
Set(value As String)
Label1.Text = value
End Set
End Property
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Me.Close()
End Sub
Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Timer1.Interval=3000 '定時(shí)3秒關(guān)閉窗口
Timer1.Enabled = True
End Sub
End Class
代碼已在VS2017測試通過。
控制臺(tái)調(diào)用Timer和窗體是類似的。首先在項(xiàng)目引用里面加入System.Windows.Forms程序集,然后在代碼頂部引入命名空間:
Imports System.Windows.Forms
在控制臺(tái)的Module中聲明一個(gè)計(jì)時(shí)器:
Private WithEvents Timer1 As New Timer()
把計(jì)時(shí)器的Tick事件靜態(tài)綁定到處理函數(shù)中:
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
'一些代碼
End Sub
在需要開始計(jì)時(shí)的地方,修改其Interval、Enabled屬性:
Timer1.Interval = 1000
Timer1.Enabled = True