|
-
Dec 21st, 2005, 07:15 AM
#14
Re: Access Reports
 Originally Posted by RobDog888
You can also use code to set the orientation for the report printing upon its opening. That will definately solve the issue but will require them to enable macros too.
VB Code:
Option Compare Database
Private Sub Report_Open(Cancel As Integer)
Me.Printer.Orientation = acPRORLandscape
End Sub
I believe he has already tried that with very mixed results. I also, back in my Access reports days, tried that, it sometimes it worked and sometimes it didn't. The one and only way I ever got landscape to print consistently was to set landscape as default at the time I created the report. Programmatically changing it was hit and miss at best.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|