I need to know how to insert the current date and time in a text box each time the form loads. Or better yet leave it hidden until the contents of the textbox are written to a text file amd then make them the header.
Printable View
I need to know how to insert the current date and time in a text box each time the form loads. Or better yet leave it hidden until the contents of the textbox are written to a text file amd then make them the header.
You can use the Now function to give current date and time. For example:
Text1.Text = Now
or
Print #1 Now
Edited by MartinLiss on 03-13-2000 at 01:58 PM