I am using Visual Studio .NET to create a Windows-based application. The application includes a form named DotNetSpider. I implemented print functionality in DotNetSpider by using the native .NET System Class Libraries. DotNetSpider will print a packing list on tractor-fed preprinted forms. The packing list always consists of two pages. The bottom margin of page 2 is different from the bottom margin of page 1. I ensure that each page is printed within the appropriate margins. What should I do?
Select Answer:
When printing page 2, set the bottom margin by using the PrintPageEventArgs object.
When printing page 2, set the bottom margin by using the QueryPageSettingEventArgs object.
Before printing, set the bottom margin of page 2 by using the PrintSetupDialog object.
Before printing, set the bottom margin of page 2 by using the PrinterSettings object.
|