Beany
Registered User.
- Local time
- Today, 15:50
- Joined
- Nov 12, 2006
- Messages
- 155
Hi,
just a simple one...........
ive got a button to open a report.............
but the report opens behind the button window and to view the report fully i must close down the button window.......... how do i open the report above the button window??????????????????????????????
the code im using:
just a simple one...........
ive got a button to open a report.............
but the report opens behind the button window and to view the report fully i must close down the button window.......... how do i open the report above the button window??????????????????????????????
the code im using:
PHP:
Private Sub Command11_Click()
On Error GoTo Err_Command11_Click
''OPENS THE report IN A NEW POPUP WINDOW
DoCmd.OpenForm "reportform", acNormal, , , , acDialog
Exit_Command11_Click:
Exit Sub
Err_Command11_Click:
MsgBox Err.Description
Resume Exit_Command11_Click
End Sub