View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default dtpicker to display current date when form opens

I don't know what date picker you're using, but maybe...

Option Explicit
Private Sub UserForm_Initialize()
Me.Calendar1.Value = Date
End Sub



ron mann wrote:

I have a DT picker in a userform. I would like it to display the current date
on opening.

Your assistance with this would be much appreciated.
--
Thanks

Ron


--

Dave Peterson