Access 2003/ XP
Hi,
I have a report that has its On Open event set to open a form in the style of a dialog box
[Code]
Private Sub Report_Open(Can cel As Integer)
DoCmd.OpenForm FormName:="A_fr mAvpBrTc", _
WindowMode:=acI con
End Sub
[Code]
The dialog box opens underneath the report. Also, the report shrinks when I click in dialog box. The dialog box is used to dynamically filter the report and works fine.
How can I get the report to open with the Dialog ontop of it? Also, how do I keep the report maximized while making selections in the dialog box?
Hi,
I have a report that has its On Open event set to open a form in the style of a dialog box
[Code]
Private Sub Report_Open(Can cel As Integer)
DoCmd.OpenForm FormName:="A_fr mAvpBrTc", _
WindowMode:=acI con
End Sub
[Code]
The dialog box opens underneath the report. Also, the report shrinks when I click in dialog box. The dialog box is used to dynamically filter the report and works fine.
How can I get the report to open with the Dialog ontop of it? Also, how do I keep the report maximized while making selections in the dialog box?
Comment