Hello all,
Do you now how change the format of the dates from code?
I have a textbox called "Datetxt" and when the form is load, it automatically load the date today, however I would like to show date and time
How can I do this?
Private Sub Form_Load()
On Error GoTo err_trap
GetDomains
Exit Sub
Me.Datetxt = Date
err_trap:
MsgBox ("Error: " & Err.Number & vbCrLf & Err.Description)
Exit Sub
End Sub
Thanks in advance for the help!!!!![]()