Consider I am using Visual Studio .NET to create a Windows-based application. The application includes a form named myProcedures. myProcedures allows users to enter very lengthy text into a database. When users click the Print button located on myProcedures, this text must be printed by the default printer. I implement the printing functionality by using the native .NET System Class Libraries with all default settings. Users report that only the first page of the text is being printed. What should I do to c
Select Answer:
In the BeginPrint event, set the HasMorePages property of the PrintEventArgs object to True.
In the EndPrint event, set the HasMorePages property of the PrintEventArgs object to True.
In the PrintPage event, set the HasMorePages property of the PrintPageEventArgs object to True.
In the QueryPageSettings event, set the HasMorePages property of the QueryPageSettingEventArgs objec
|