Printing from beginning of page in VB.Net
I have a printing program which runs in a timer controlled loop.
Now, I want it so that the printer starts the printing from a new page everytime the print command is called. Right now, the printer stops whereever the printing stops, which means the next page starts from the middle of the page instead of a new page.
Is there a way to set this in VB.Net Printing Namespace?
Re: Printing from beginning of page in VB.Net
Each execution of the PrintPage event handler should print a single page. Are you saying that that is not the case?
Re: Printing from beginning of page in VB.Net
That is not the case.
Does it have to do with the Settings on the Printer?
Re: Printing from beginning of page in VB.Net
I think we should see some code, like your PrintPage event handler and where you call Print.