AC5FF
Registered User.
- Local time
- Today, 08:08
- Joined
- Apr 6, 2004
- Messages
- 552
When I open up a form the window that opens is always sized too small. If the form I am working on is full screen then the report opens full screen - that's just not a real option here.
Is there a way in the code to tell it to automatically open as full screen?
Thanks!
Is there a way in the code to tell it to automatically open as full screen?
Code:
Private Sub Command8_Click()
On Error GoTo Err_Command8_Click
Dim stDocName As String
stDocName = "CGAS ADDRESS REGISTER (defined)"
DoCmd.OpenReport stDocName, acPreview
Exit_Command8_Click:
Exit Sub
Thanks!