I want to use a calendar object. Upon opening the form I want thecalendar to be set to the current month. It opens with November 2003.Any ideas?
In the form's initialize event have it set the calendar (Calendar1 inthis case) to the current date:Private Sub UserForm_Initialize()Me.Calendar1.Value = DateEnd Sub