PC Review


Reply
 
 
Meenakshi
Guest
Posts: n/a
 
      5th Aug 2003
Hello everyone
Can anybody help me out. i want to print two pages per single sheet. a
book like printing. that is first page as well as last page of the
document print on same side of the single sheet. how can i do this
thru C# language
Thanks
Regards
Meenakshi
 
Reply With Quote
 
 
 
 
sridhar
Guest
Posts: n/a
 
      5th Aug 2003

You can enable the user to change printer settings by
performing the following steps.

Create an instance of the
System.Drawing.Printing.PrinterSettings class. For our
form, add the following line of code:
private PrinterSettings prtSettings = new PrinterSettings
();

Set prtSettings to the PrinterSettings property of the
PageSetupDialog:

private void filePageSetupMenuItem_Click(Object sender ,
EventArgs e)
{
PageSetupDialog pageSetupDialog = new PageSetupDialog
();
pageSetupDialog.PageSettings = pgSettings;
pageSetupDialog.PrinterSettings = prtSettings;
pageSetupDialog.AllowOrientation = true;
pageSetupDialog.AllowMargins = true;
pageSetupDialog.ShowDialog();
}

Now the Printer button in the Page Setup dialog is
enabled. If you click the Printer button, the Printer
setting page will be displayed.


Please check at
http://www.ondotnet.com/pub/a/dotnet...24/printing.ht
ml


>-----Original Message-----
>Hello everyone
>Can anybody help me out. i want to print two pages per

single sheet. a
>book like printing. that is first page as well as last

page of the
>document print on same side of the single sheet. how can

i do this
>thru C# language
>Thanks
>Regards
>Meenakshi
>.
>

 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Printing more than five pages (30+ slides) of handouts makes an oldHP LaserJet 6P printer stop printing. Ant Microsoft Powerpoint 1 23rd Mar 2009 10:09 AM
Re: Epson R200 catching corners of photo paper while printing! ARGH!skewing image while printing! HELP Arthur Entlich Printers 0 12th Dec 2004 03:21 PM
Re: Epson R200 catching corners of photo paper while printing! ARGH! skewing image while printing! HELP Nodge Printers 0 11th Dec 2004 10:39 PM
suddenly printing very small email messages, how to control printing fonts? niteowl Microsoft Outlook Printing 0 19th Oct 2004 01:58 PM
Good color/composite doc Printing AND Cost-Effective B&W Printing in ONE Printer? Glum Sp Printers 0 1st Oct 2003 12:35 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:46 AM.