Enter Today's Date In A UserForm TextBox

  • Thread starter Thread starter Minitman
  • Start date Start date
M

Minitman

Greetings,

I am trying to enter today's date into a TextBox on a UserForm when I
open the UserForm.

Anyone know how to do this?

Any help will be appreciated.

-Minitman
 
how about this?

Private Sub UserForm_Initialize()
Me.TextBox1.Value = Date
End Sub
 
WOW!

Gary, FSt and Doug - Thanks for the very fast responses! <VBG>

This is the first time I received three reply's that were so much
alike, and all were exactly what I needed.

Thank you all very much.

-Minitman
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top