DateTime picker as input

mfaisal.ce

Member
Local time
Today, 18:57
Joined
Dec 21, 2020
Messages
76
Dears,

I want the user to input date by datetime picker .... kindly guide me how i can do that,

example

input("Enter Date Here")

When i use the above code, prompt comes for getting the value but i need datetime picker, like a normal textbox in runtime mode...

regards,
 
You can use a popup calendar.
 
there is already a built-in datepicker in access.
 
this is code, how i can use

DoCmd.OpenReport ReportName:="RPTSheet_Daily", View:=acViewPreview, wherecondition:="[Dated]=#" & Format(InputBox("Enter Date"), "yyyy-mm-dd") & "#"

Where i can use datetime picker......
 
 
yes, you can use form in the Open event of your report.
on the demo, open the report.
 

Attachments

Users who are viewing this thread

Back
Top Bottom