Hi everyone,
How can i retrieve current date onto a text box ?
Thanks,
Printable View
Hi everyone,
How can i retrieve current date onto a text box ?
Thanks,
Welcome to the Forum :wave:
Here is one way:
VB Code:
Text1.Text = Format(Now(), "dd-mmm-yyyy")
Thank for your reply & for the welcome,
When i copy your line says invalid outside procedure.
Try this
VB Code:
Private Sub Form_Load() Text1.Text = Date() End Sub
Thaks Guys........solved!!!!