Re: $$Excel-Macros$$ to get printing dialogue box on printing

2011-09-07 Thread Shankar Bheema
thank you noorain for providing solution. I will try and let you know the result. On Tue, Sep 6, 2011 at 9:41 PM, NOORAIN ANSARI wrote: > Dear Bheema, > > Try it... > > Private Sub CommandButton1_Click() > Application.Dialogs(xlDialogPrint).Show > End Sub > > Thanks & regards, > Noorain Ansari >

Re: $$Excel-Macros$$ to get printing dialogue box on printing

2011-09-06 Thread NOORAIN ANSARI
Dear Bheema, Try it... Private Sub CommandButton1_Click() Application.Dialogs(xlDialogPrint).Show End Sub Thanks & regards, Noorain Ansari *http://excelmacroworld.blogspot.com/* *http://noorain-ansari.blogspot.com/* On

$$Excel-Macros$$ to get printing dialogue box on printing

2011-09-06 Thread Bheema Shankar
I made a userform with a command button called PRINT and wrote the following: me.printform but it will directly printing the form without showing the Print dialogue box. how to get that dialogue box on command.click event. --