Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

printout landscape

Status
Not open for further replies.

pullingteeth

Programmer
Sep 26, 2003
128
US
Hello, I'm trying to print a form which is too wide to fit on a portrait orientation printout. I'm using the code:

DoCmd.PrintOut

Is there any way to modify this so that it prints in landscape?

Thanks!
 
pullingteeth, something like this?

from command button on form...

Forms("FormName").Printer.Orientation = acPRORLandscape
DoCmd.PrintOut acSelection, 1, 1, acLow, 1, False

I got this, from looking up "PrintQuality Property", in VBA help.

Good Luck!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top