Fit to page

IanT

Registered User.
Local time
Today, 21:18
Joined
Nov 30, 2001
Messages
191
By using the 'On Open' command in the report properties, I want code to make the report fit into the screen. Can anyone help!
 
If I'm correct U want to open reeport to fit the window in that case use the following;

Private Sub Report_Open(Cancel As Integer)

DoCmd.RunCommand acCmdFitToWindow

End Sub
 

Users who are viewing this thread

Back
Top Bottom