Show Date Picker

MarkA70

Registered User.
Local time
Today, 08:12
Joined
Jan 30, 2016
Messages
43
Can one pragmatically turn the DatePicker attribute On and Off?

Thanks!
 
Code:
If Me.TextBoxDate.ShowDatePicker = 1 Then
   Me.TextBoxDate.ShowDatePicker = 0
Else
   Me.TextBoxDate.ShowDatePicker = 1
End If
 
CRONK: Thanks a bunch! With no manuals since like Access 95, where does one go to find out all of the various ins and outs of these attributes like ShowDatePicker? I was using True/False, code compiled but did not work. Tried a million internet searches with nada.
 

Users who are viewing this thread

Back
Top Bottom