Toogle to print Portrait

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

I have a combo box on my opening form that when I select something from it,
it prints a Landscape. Can I use a toogle lets say [Portrait Yes/No] on that
form
At the moment it is using one report [rptPrintMainCategoryRemark] I have
copied that report and renamed it [rptPrintMainCategoryRemarkP]
This is what is on my On Click .............Thanks for any help.........Bob
Private Sub cbCategory_Click()
DoCmd.OpenReport "rptPrintMainCategoryRemark", acViewPreview
End Sub
 
Hi Bob,

I don't think you want to make copies of each report, one for portrait mode
and one for landscape mode. That will just cause you more work when you need
to change something in your reports.

Try the method shown in this article:

Changing printer settings for a report in Access
http://office.microsoft.com/en-us/access/HA010345531033.aspx


Tom Wickerath
Microsoft Access MVP
https://mvp.support.microsoft.com/profile/Tom
http://www.access.qbuilt.com/html/expert_contributors.html
__________________________________________
 
Back
Top