need Printing Techniques, can you suggest me, How to?
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
How to take a user-defind printout by a single click of the button without using the control: "Print Preview DialogBox"? Friends, I made one invoice bill format so I want generate a print, directly send to printer which is default? suggest me?:~ wish me as All The BEST.
-
How to take a user-defind printout by a single click of the button without using the control: "Print Preview DialogBox"? Friends, I made one invoice bill format so I want generate a print, directly send to printer which is default? suggest me?:~ wish me as All The BEST.
Just create a new PrintDocument, set the page/printer settings and call Print(). You surely have to handle the PrintPage event (the same as in the preview dialog).