Query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form that opens up with a calendar control where the user can select the start and end date into two combo box. Then a command button is pressed and the report is run keeping the form open because the end date combo box is displayed ont eh from. Is their anyway to eventual close this form once the report is run so the form goes away
 
In the OnClose event of the report, you can have a command like this:

DoCmd.Close acForm, "frmMyForm"

--
--Roger Carlson
www.rogersaccesslibrary.com
Reply to: Roger dot Carlson at Spectrum-Health dot Org

George Schneider said:
I have a form that opens up with a calendar control where the user can
select the start and end date into two combo box. Then a command button is
pressed and the report is run keeping the form open because the end date
combo box is displayed ont eh from. Is their anyway to eventual close this
form once the report is run so the form goes away
 
Back
Top