Page eject
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
I need to send a page eject to the Windows default printer. This is all the program needs to do. What function or code snippet in Visual C++ do I need to use. Thanks
There's a really nice CPage class for printing here All you would need is to call it's StartDoc();StartPage();EndPage();EndDoc() functions, after grabbing the printer info (you can hide the dialog -- you'll see what I mean). It works transparently - so local or network is not an issue