anyone know how to show the current time?
Printable View
anyone know how to show the current time?
VB Code:
MsgBox(Now.ToShortTimeString) MsgBox(Now.ToLongTimeString) MsgBox(Now.TimeOfDay.ToString)
thanks!
how do u update it every second?
so it would show it change every sec..
Just use a timer and in the tick or whatever its event is called then update the time.
hmm.. didnt think of that :confused:Quote:
Originally posted by Edneeis
Just use a timer and in the tick or whatever its event is called then update the time.
thanks again!