Show Date Picker (2 Viewers)

MarkA70

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

Thanks!
 

Cronk

Registered User.
Local time
Today, 20:57
Joined
Jul 4, 2013
Messages
2,774
Code:
If Me.TextBoxDate.ShowDatePicker = 1 Then
   Me.TextBoxDate.ShowDatePicker = 0
Else
   Me.TextBoxDate.ShowDatePicker = 1
End If
 

MarkA70

Registered User.
Local time
Today, 05:57
Joined
Jan 30, 2016
Messages
43
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

Top Bottom