Show Date Picker (1 Viewer)

MarkA70

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

Thanks!
 

Cronk

Registered User.
Local time
Tomorrow, 03:05
Joined
Jul 4, 2013
Messages
2,772
Code:
If Me.TextBoxDate.ShowDatePicker = 1 Then
   Me.TextBoxDate.ShowDatePicker = 0
Else
   Me.TextBoxDate.ShowDatePicker = 1
End If
 

MarkA70

Registered User.
Local time
Today, 12:05
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