G Guest May 28, 2004 #1 I was told to make all my forms modal and popup to prevent the user accessing the toolbars. This works fine but when a print preview is done it goes behind the current form. Any way around this ???
I was told to make all my forms modal and popup to prevent the user accessing the toolbars. This works fine but when a print preview is done it goes behind the current form. Any way around this ???
T tina May 28, 2004 #2 in the code that opens reports, you could add a line to make the current form invisible, as Me.Visible = False DoCmd.OpenReport... and then a line of code in the report's OnClose event procedure to show the form again, as Forms!MyForm.Visible = True hth David said: I was told to make all my forms modal and popup to prevent the user Click to expand... accessing the toolbars. This works fine but when a print preview is done it goes behind the current form. Any way around this ???
in the code that opens reports, you could add a line to make the current form invisible, as Me.Visible = False DoCmd.OpenReport... and then a line of code in the report's OnClose event procedure to show the form again, as Forms!MyForm.Visible = True hth David said: I was told to make all my forms modal and popup to prevent the user Click to expand... accessing the toolbars. This works fine but when a print preview is done it goes behind the current form. Any way around this ???