View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Doug Glancy Doug Glancy is offline
external usenet poster
 
Posts: 770
Default Enter Today's Date In A UserForm TextBox

Steve,

Private Sub UserForm_Initialize()
Me.TextBox1.Text = Date
End Sub

hth,

Doug

"Minitman" wrote in message
...
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