View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gary Keramidas Gary Keramidas is offline
external usenet poster
 
Posts: 2,494
Default Enter Today's Date In A UserForm TextBox

how about this?

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


--


Gary


"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