Click here to Skip to main content
Click here to Skip to main content

Adding custom paper sizes to named printers

By , 11 Nov 2005
 

Introduction

My company needed me to programmatically add a custom paper size (a printer form) to the default printer and set the printer to use the custom paper size. After looking around, the best alternative we could find was to make use of the printing and print spooling Win32 API functions found in winspool.drv. The functions used in the project are AddForm, DeleteForm, DocumentProperties, GetPrinter and SetPrinter along with some others. The target platform is WinNT / 2000 / XP although there was already some support for earlier versions of Windows added before I began working on the project. I've never tried to use that section of code but I'm pretty sure that it will only add the custom paper size and not set the printer to use it.

Challenges

Calling these from C# required a little bit more knowledge of marshaling techniques than I had under my belt as I was only able to get as far as getting a handle to the default printer using the winspool functions GetDefaultPrinter and OpenPrinter before requiring some help. At that point, we opened a support case with Microsoft and they sent a nice C# project with the working AddForm calls. However, when we asked about setting the printer to use the newly created form, the best they could do was provide a VB.NET project. So, I ported VB.NET over to C#. Our last requirement was to signal the previously open applications of the settings change and this was done using SendMessageTimeout from user32.dll.

Implementation

Rather than make a call to the Win32 GetDefaultPrinter function (which you have to call twice, once to get the size of the string and another time to get the string) there is an easier way to get the default printer name provided in the .NET platform:

using System.Drawing.Printing;
...
PrintDocument pd = new PrintDocument();
string sPrinterName = pd.PrinterSettings.PrinterName;

After getting the printer name, get a handle to the printer:

bool bGotPrinter = OpenPrinter(printerName, out hPrinter, ref defaults);

At this point, we can delete the custom paper size by name:

// delete the form incase it already exists
DeleteForm(hPrinter, paperName);

And create the paper size:

// create and initialize the FORM_INFO_1 structure 
FormInfo1 formInfo = new FormInfo1();
formInfo.Flags = 0;
formInfo.pName = paperName;
// all sizes in 1000ths of millimeters
formInfo.Size.width = (int)(widthMm * 1000.0); 
formInfo.Size.height = (int)(heightMm * 1000.0);
formInfo.ImageableArea.left = 0;
formInfo.ImageableArea.right = formInfo.Size.width;
formInfo.ImageableArea.top = 0;
formInfo.ImageableArea.bottom = formInfo.Size.height;

Add the paper size to the printer's list of available paper sizes:

bool bFormAdded = AddForm(hPrinter, 1, ref formInfo);

I'll leave setting the printer to use the newly added form and signaling open apps of the settings change out for now. Have a look at the demo project, its all there.

Caveat

This project is currently set up to add a custom paper size of 104 mm*4000 mm to the default printer. It attempts to do this in the Form1_Load event of Test.cs. If you run this on a computer with a default printer that doesn't support these dimensions, the paper size will not show up in the list of available paper sizes for your default printer and no exceptions will be generated. If you'd like to test run a test that will work, specify a smaller paper size that your printer will support. You can convert millimeters to inches by multiplying the millimeters by 25.4. I didn't take the time to add any 'add custom paper size in inches' functionality to this project. It could be done very easily by dividing the inches by 25.4 and passing off to the 'add custom paper size by mm' function which already exists.

Check to see if it worked

The project is set to open small form with single 'Open Dialog' button after adding the custom paper size. Clicking the button opens a print dialog window. To see the list of available printer sizes for the default printer, click the properties button (opens the Properties window) and then the advanced button (opens advanced options window). You can now see the list of available paper sizes for the printer.

To check that it worked from Windows XP, open the printers and faxes window (start menu, printers and faxes), right click on your default printer (the one with the check box next to it) and select properties (opens Properties window), click the printing preferences button (opens Preferences window), click the advanced button (opens Advanced Options window) and then you can see a list of paper sizes.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

twostepted

United States United States
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionI'm not dowload file [modified]memberngoctinhquangngai3-Jun-12 21:16 
Generalmy vote of 5memberYifeng Ding28-Apr-12 19:05 
GeneralRe: my vote of 5memberngoctinhquangngai3-Jun-12 23:51 
GeneralMy vote of 5memberYifeng Ding28-Apr-12 18:58 
it is really helpful.
QuestionTôi muốn in khổ nhỏ hơn a5memberngoctinhquangngai4-Apr-12 15:56 
GeneralMy vote of 5memberigetorix10-Feb-12 4:12 
QuestionThank you .You saved my time so muchmembersiminal14-Dec-11 0:09 
Questionvb6.0 query errormemberkiran76342511-Oct-11 0:40 
QuestionIt's CoolmemberNattawutxp8-Aug-11 17:35 
GeneralIt does not work for mememberscarus31-Jan-11 23:04 
GeneralRe: It does not work for mememberFALU2315-Mar-11 1:23 
GeneralRe: It does not work for mememberISharp13-Dec-11 16:13 
GeneralMy vote of 5memberpandian7811-Nov-10 0:36 
GeneralMy vote of 4memberADELASSI18-Aug-10 2:11 
GeneralIt add in XPS Printer onlymemberKhaniya25-Jun-10 20:56 
GeneralRe: It add in XPS Printer onlymemberMember 92379389-Oct-12 1:13 
Generali have a question from my classmemberkristal1238-Sep-09 3:28 
QuestionReseting the PaperSizememberGALE_29-Jun-09 7:02 
AnswerRe: Reseting the PaperSizememberMember 923793821-Oct-12 21:03 
Generalvery googmemberali2000031-May-09 5:36 
GeneralExporting Problemmembersyed tameem6-Aug-08 19:36 
Generalhi thanks a lot i have another problemmembersyed tameem27-Jul-08 18:20 
GeneralPaper size of printer is set to Letter instead of custom paper sizemembersyed tameem22-Jul-08 2:34 
GeneralRe: Paper size of printer is set to Letter instead of custom paper sizememberefrainro24-Jul-08 3:46 
GeneralRe: Paper size of printer is set to Letter instead of custom paper sizememberngoctinhquangngai3-Jun-12 23:50 
GeneralIt is Not adding with hp1010memberGowir Shankar27-Jun-08 21:40 
GeneralIt's all working, Except I want to change ...memberVishram16-Jun-08 18:45 
QuestionCustom size not addedmemberMember 279762812-Jun-08 3:00 
QuestionIt doesn't work for me :(memberD_Friendly_Bear9-Mar-08 13:30 
QuestionEPSON LQ 2180memberHumair1-Feb-07 21:33 
AnswerRe: EPSON LQ 2180membertwostepted2-Feb-07 8:37 
GeneralRe: EPSON LQ 2180memberHumair3-Feb-07 12:27 
GeneralContact me at componentworks.netmembertwostepted18-Jan-07 17:15 
Generalthanks for this nice codememberShah Kazmi18-Jan-07 6:48 
GeneralRe: thanks for this nice codemembertwostepted18-Jan-07 17:12 
GeneralIt made some kind of problemmemberAviad Barel16-Nov-06 5:45 
GeneralRe: It made some kind of problemmembertwostepted16-Nov-06 7:42 
QuestionDo you have these code in VB.net?membertaneyezone14-Nov-06 22:13 
AnswerRe: Do you have these code in VB.net?membertwostepted14-Nov-06 23:45 
AnswerRe: Do you have these code in VB.net?memberjunk3305-Apr-07 12:14 
AnswerRe: Do you have these code in VB.net?memberDeoinbox2-Aug-07 16:47 
GeneralWhy does it not workmemberMurre5-Nov-06 21:40 
GeneralRe: Why does it not workmemberMurre6-Nov-06 20:28 
GeneralRe: Why does it not workmembertommydxz220-Aug-07 3:35 
GeneralAdding formmemberAmphysvena6-Dec-05 20:27 
GeneralRe: Adding formmembertwostepted7-Dec-05 18:44 
GeneralRe: Adding formmemberAmphysvena7-Dec-05 19:28 
GeneralRe: Adding formmembertwostepted11-Dec-05 16:56 
GeneralRe: Adding formmemberAmphysvena11-Dec-05 17:16 
QuestionRemoving formsmembero_pontios15-Nov-05 17:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 11 Nov 2005
Article Copyright 2005 by twostepted
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid