visualuser
MIS
How do I make a button to ask the user to enter dates for a report to run?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub button1_click()
dtstart = InputBox("start?")
dtstop = InputBox("stop?")
'code for report to run
End Sub
global dtstart as date
global dtstop as date
function reportstart()
reportstart = dtstart
end function
function reportstop()
reportstop = dtstop
end function