Thread: vba calendar
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein \(MVP - VB\)[_1942_] Rick Rothstein \(MVP - VB\)[_1942_] is offline
external usenet poster
 
Posts: 1
Default vba calendar

I'm assuming by "form" you mean UserForm and by "calendar" you mean the
Calendar Control. Further assuming your Calendar Control is named Calendar1,
put the following code in the UserForm's code window...

Private Sub UserForm_Initialize()
Calendar1.Value = Date
End Sub

Obviously, if you already have an existing UserForm_Initialize event
procedure in your project, simply add the

Calendar1.Value = Date

statement to it instead.

Rick


"Jennifer" wrote in message
...
I am using a form that has a calendar in it. Does anyone know how to get it
to show todays date when the form opens verses the date i built the form?
Not
a huge problem just very annoying.
--
Thank you,

Jennifer