Print Dialog from VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a VBA command that will call up the print dialog box before printing
so that number of pages, preview, etc. can be modified? .PrintOut isn't
doing it for me.

Thank you for your help.
 
shagthewag said:
Is there a VBA command that will call up the print dialog box before
printing so that number of pages, preview, etc. can be modified?
.PrintOut isn't doing it for me.

stw

application.Dialogs(xlDialogPrint).Show
 
Back
Top