what is the code to display the system clock to keep going run?
e.g
label1.caption=time
'label1.refresh 'display as dynamic mode'
Printable View
what is the code to display the system clock to keep going run?
e.g
label1.caption=time
'label1.refresh 'display as dynamic mode'
put the code in a timer with an interval of 500
VB Code:
Private Sub Timer1_Timer() Label1.Caption = Time End Sub
:)
Or use the StatusBar, with one of its windows set to time/date option...