I just want to know the Code of creating a watch in my Form can you plizz help me.
Sabs
Create a Label, and a Timer, then use this code: VB Code: Private Sub Form_Load() Timer1.Interval = 1000 '1 second End Sub Private Sub Timer1_Timer() Label1.Caption = Time() End Sub Thats as easy as they come.. Phreak
Private Sub Form_Load() Timer1.Interval = 1000 '1 second End Sub Private Sub Timer1_Timer() Label1.Caption = Time() End Sub
Visual Studio 6, Visual Studio.NET 2005, MASM
Forum Rules