calendar help

rg2005

Registered User.
Local time
Today, 05:20
Joined
Dec 13, 2005
Messages
12
i cant hide the calendar when u open the form and i cant click a date without an error appearing help please
 

Attachments

form

Date1.Value = Calendar.Value
ComboCurrentDiagnosis.SetFocus
Calendar.Visible = False


ComboCurrentDiagnosis doesn't exist anywhere on your form
 
but even if i remove ComboCurrentDiagnosis.setfocus, it still doesnt work
 
calendar

You can't hide a control that has the focus.


Date1.Value = Calendar.Value
'ComboCurrentDiagnosis.SetFocus
'Calendar.Visible = False



Why are you trying to hide the Calendar?
 
i want the calendar to be hidden once the form is open, then when u click the date text box, the calendar should open, and when you choose a date, the calendar should close and date should be in the text box
 
Search the forum on "pop up calendar" Lots of info on this already posted.
 

Users who are viewing this thread

Back
Top Bottom