vb classic print

It's a control code sent to printer to make it advance to next page, it is also called FormFeed, I think Enddoc sent this and Escape.. VB.Net doesn't print like this, but uses PrintDocument.
 
Vb Classic

Hi,
My Problem is what if i am using Dot Matrix Printer & trying to print a text files which needs a form feed. What should i use to get the form feed exactly working as Printer.Enddoc? Should i use chr(12) or Chr(&HC).
 
Please take some care about where you "dump" your posts, you already had this thread topic, so why post the follow up to Forum Feedback which has nothing to do with your topic? Threads merged.

&HC=12, and who knows what else an Enddoc would send.
When a Visual Basic 6.0 application is upgraded to Visual Basic 2005, any instances of the Printer object are not upgraded, and an upgrade error is issued. You need to remove the code for the Printer object and re-implement printing using a PrintDocument component.
 
Back
Top