Could anyone tell me how to put the time and date onto a form?
~Thanks!
Printable View
Could anyone tell me how to put the time and date onto a form?
~Thanks!
Caption = Now
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Certified AllExperts Expert
Add a form and a caption box
put this code into the form load event
Label1.Caption = Date & Chr(13) & Time
This will show the date and time of loading but will increment the time until you reload form.
You could look at putting a loop or timer event in to do this