View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Open Menu item "Print" from VBA

Use this

Application.Dialogs(xlDialogPrint).Show


--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"Bill Agee" wrote in message ink.net...
On a worksheet, I can choose from the Menu: File, Print and then a form
displaying the Printer names in a combo box, etc. Since I have multiple
printers including Acrobat printer this is great.

I would like to be able to perform the same thing with VBA. Is there a
command
to display the form "Print" from VBA.

Bill