Preview report in Maxmized view

  • Thread starter Thread starter Michael Lam
  • Start date Start date
M

Michael Lam

Dear all

I have created a database with forms not in the maximized view

The button to preview a report is shown as below

Private Sub FaultReq_Click()
On Error GoTo Err_FaultReq_Click

Dim stDocName As String

stDocName = "RequestByDeptReject"
DoCmd.OpenReport stDocName, acPreview

Exit_FaultReq_Click:
Exit Sub

Err_FaultReq_Click:
MsgBox Err.Description
Resume Exit_FaultReq_Click

End Sub

Is there any way to configure so that all reports are preview in maximzed
view ?
 
[snip]
Is there any way to configure so that all reports are preview in maximzed
view ?

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
In each report's Open event...

DoCmd.Maximize
 
thx
Rick Brandt said:
[snip]
Is there any way to configure so that all reports are preview in maximzed
view ?

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
In each report's Open event...

DoCmd.Maximize
 
Back
Top