My reports have ToolBar, when I open a report from a modal form it hides behind the form.
I tried to make the report popup, then it came to front but lost the tollBar.
How can I bring it to front without losing the ToolBar ?
The usual way, I think, is to hide the modal form when the report opens.
For instance in the button command where you open the report, add a:
[tt]Me.Visible=False[/tt]
Then in the on close event of the report, try adding a:
[tt]Forms!frmMyPopUp.Visible=True[/tt]
I usually also test using an isloaded function, perhaps pulled from the Northwind sample database, or per Rohdems faq faq181-320 to be on the safe side;-)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.