[RESOLVED] how do I input the today's date into a text box automatically?
okay,, I am an idot. How do get the date from the system clock so I can use it as a variable? variable name most likely "varDateEntered"
Re: how do I input the today's date into a text box automatically?
If varDateEntered is defined (in a Dim statement) as a date, use varDateEntered= Now(). If it's defined as a string (which the contents of a textbox would be), use varDateEntered = Format(Now(), "mm-dd-yyyy") (or whatever format you want.)
Re: how do I input the today's date into a text box automatically?
wootness.. thank you lots