Click here to Skip to main content
15,867,488 members
Articles / Desktop Programming / MFC
Article

Set up/change printer orientation and select paper type/size

Rate me:
Please Sign up or sign in to vote.
3.08/5 (22 votes)
20 Nov 2005 154.4K   21   45
Changing printer orientation and paper type at run time.

Introduction

Well.. it has been a long trip since I first found the excellent work “ReportGenrator” published by Johan Rosengren. Not only is it a very helpful set of tools, but I must use this opportunity to thank Johan for his ongoing support, feedback, and prompt response to many of my questions along the way.

Inspired by this project, and finding my own challenges, I had to resolve a few other issues along the way, two that are no doubt “Generic” type issues:

  1. Changing the printer orientation at run time – from Portrait to Landscape and back.
  2. Setting up the paper size / type programmatically.

The following two static functions are aimed exactly at doing that.

You can call SetDefaultPrinterOrientation() like in the following example. The return value can be used to set the printer back to whatever it was set to, before making the call.

int OriginalOrientation = SetDefaultPrinterOrientation(DMORIENT_LANDSCAPE);
SetPaperType(DMPAPER_<st1:stockticker>ENV</st1:stockticker>_DL);

/* orientation selections */
#define DMORIENT_PORTRAIT 1
#define DMORIENT_LANDSCAPE 2

Those are defined in WinGdi.h, as are the various paper selections that can be used by the SetPaperType() function.

#include "winspool.h"

int SetDefaultPrinterOrientation(short dmOrientation)
{
    HANDLE hPrinter = NULL;
    DWORD dwNeeded = 0;
    PRINTER_INFO_2 *pi2 = NULL;
    DEVMODE *pDevMode = NULL;
    PRINTER_DEFAULTS pd;
    BOOL bFlag;
    LONG lFlag;
    LPTSTR pPrinterName = NULL;
    DWORD size;
    GetDefaultPrinter(NULL, &size);
    TCHAR* buffer = new TCHAR[size];
    if(GetDefaultPrinter(buffer, &size))
        pPrinterName = buffer;
    else
    {
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // Open printer handle (on Windows NT, you need full-access because you
    // will eventually use SetPrinter)...
    ZeroMemory(&pd, sizeof(pd));
    pd.DesiredAccess = PRINTER_ALL_ACCESS;
    bFlag = OpenPrinter(pPrinterName, &hPrinter, &pd);
    if (!bFlag || (hPrinter == NULL))
    {
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // The first GetPrinter tells you how big the buffer should be in 
    // order to hold all of PRINTER_INFO_2. Note that this should fail with 
    // ERROR_INSUFFICIENT_BUFFER. If GetPrinter fails for any other reason 
    // or dwNeeded isn't set for some reason, then there is a problem...
    SetLastError(0);
    bFlag = GetPrinter(hPrinter, 2, 0, 0, &dwNeeded);
    if ((!bFlag) && (GetLastError() != 
             ERROR_INSUFFICIENT_BUFFER) || (dwNeeded == 0))
    {
        ClosePrinter(hPrinter);
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // Allocate enough space for PRINTER_INFO_2...
    pi2 = (PRINTER_INFO_2 *)GlobalAlloc(GPTR, dwNeeded);
    if (pi2 == NULL)
    {
        ClosePrinter(hPrinter);
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // The second GetPrinter fills in all the current settings, so all you
    // need to do is modify what you're interested in...
    bFlag = GetPrinter(hPrinter, 2, (LPBYTE)pi2, dwNeeded, &dwNeeded);
    if (!bFlag)
    {
        GlobalFree(pi2);
        ClosePrinter(hPrinter);
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // If GetPrinter didn't fill in the DEVMODE,
    // try to get it by calling DocumentProperties...
    if (pi2->pDevMode == NULL)
    {
        dwNeeded = DocumentProperties(NULL, hPrinter, 
                         pPrinterName,NULL, NULL, 0);
        if (dwNeeded <= 0)
        {
            GlobalFree(pi2);
            ClosePrinter(hPrinter);
            if(buffer != NULL)
                delete buffer;
            return 0;
        }
        pDevMode = (DEVMODE *)GlobalAlloc(GPTR, dwNeeded);
        if (pDevMode == NULL)
        {
            GlobalFree(pi2);
            ClosePrinter(hPrinter);
            if(buffer != NULL)
                delete buffer;
            return 0;
        }
        lFlag = DocumentProperties(NULL, hPrinter, 
                pPrinterName, pDevMode, NULL,DM_OUT_BUFFER);
        if (lFlag != IDOK || pDevMode == NULL)
        {
            GlobalFree(pDevMode);
            GlobalFree(pi2);
            ClosePrinter(hPrinter);
            if(buffer != NULL)
                delete buffer;
            return 0;
        }
        pi2->pDevMode = pDevMode;
    }
    // Driver is reporting that it doesn't support this change...
    if (!(pi2->pDevMode->dmFields & DM_ORIENTATION))
    {
        GlobalFree(pi2);
        ClosePrinter(hPrinter);
        if (pDevMode)
            GlobalFree(pDevMode);
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // Specify exactly what we are attempting to change...
    pi2->pDevMode->dmFields = DM_ORIENTATION;
    // Make note of the current Orientation setting
    // If the functions works, return it to the calling program
    // So that, the application can set it back to whatever
    // it used to be before the call
    int OriginalOrientation = pi2->pDevMode->dmOrientation;
    // Now, change it to whatever was requested by the calling application
    pi2->pDevMode->dmOrientation = dmOrientation;
    // Do not attempt to set security descriptor...
    pi2->pSecurityDescriptor = NULL;
    // Make sure the driver-dependent part of devmode is updated...
    lFlag = DocumentProperties(NULL, hPrinter, pPrinterName, 
            pi2->pDevMode, pi2->pDevMode, 
            DM_IN_BUFFER | DM_OUT_BUFFER);
    if (lFlag != IDOK)
    {
        GlobalFree(pi2);
        ClosePrinter(hPrinter);
        if (pDevMode)
            GlobalFree(pDevMode);
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // Update printer information...
    bFlag = SetPrinter(hPrinter, 2, (LPBYTE)pi2, 0);
    if (!bFlag)
    // The driver doesn't support, or it is unable to make the change...
    {
        GlobalFree(pi2);
        ClosePrinter(hPrinter);
        if (pDevMode)
            GlobalFree(pDevMode);
        if(buffer != NULL)
            delete buffer;
        return 0;
    }
    // Tell other apps that there was a change...
    SendMessageTimeout(HWND_BROADCAST, WM_DEVMODECHANGE, 0L, 
             (LPARAM)(LPCSTR)pPrinterName, SMTO_NORMAL, 1000, NULL);
    // Clean up...
    if (pi2)
        GlobalFree(pi2);
    if (hPrinter)
        ClosePrinter(hPrinter);
    if (pDevMode)
        GlobalFree(pDevMode);
    if(buffer != NULL)
        delete buffer;
    return OriginalOrientation;
}

// It seems that you can’t change more than one attribute
// at a time, hence I needed to
// create two separate functions, on to change orientation,
// and the other to select /
// change the paper type for my specific task
BOOL SetPaperType(short dmPaperSize)
{
    HANDLE hPrinter = NULL;
    DWORD dwNeeded = 0;
    PRINTER_INFO_2 *pi2 = NULL;
    DEVMODE *pDevMode = NULL;
    PRINTER_DEFAULTS pd;
    BOOL bFlag;
    LONG lFlag;
    LPTSTR pPrinterName = NULL;
    DWORD size;
    GetDefaultPrinter(NULL, &size);
    TCHAR* buffer = new TCHAR[size];
    if(GetDefaultPrinter(buffer, &size))
        pPrinterName = buffer;
    else
    {
        if(buffer != NULL)
            delete buffer;
        return FALSE;
    }
    // Open printer handle (on Windows NT,
    // you need full-access because you
    // will eventually use SetPrinter)...
    ZeroMemory(&pd, sizeof(pd));
    pd.DesiredAccess = PRINTER_ALL_ACCESS;
    bFlag = OpenPrinter(pPrinterName, &hPrinter, &pd);
    if (!bFlag || (hPrinter == NULL))
    {
        if(buffer != NULL)
            delete buffer;
        return FALSE;
    }
    // The first GetPrinter tells you how big the buffer should be in 
    // order to hold all of PRINTER_INFO_2. Note that this should fail with 
    // ERROR_INSUFFICIENT_BUFFER. If GetPrinter fails for any other reason 
    // or dwNeeded isn't set for some reason, then there is a problem...
    SetLastError(0);
    bFlag = GetPrinter(hPrinter, 2, 0, 0, &dwNeeded);
    if ((!bFlag) && (GetLastError() != 
             ERROR_INSUFFICIENT_BUFFER) || (dwNeeded == 0))
    {
        ClosePrinter(hPrinter);
        if(buffer != NULL)
            delete buffer;
        return FALSE;
    }
    // Allocate enough space for PRINTER_INFO_2...
    pi2 = (PRINTER_INFO_2 *)GlobalAlloc(GPTR, dwNeeded);
    if (pi2 == NULL)
    {
        ClosePrinter(hPrinter);
        if(buffer != NULL)
            delete buffer;
        return FALSE;
    }
    // The second GetPrinter fills in all the current settings, so all you
    // need to do is modify what you're interested in...
    bFlag = GetPrinter(hPrinter, 2, (LPBYTE)pi2, dwNeeded, &dwNeeded);
    if (!bFlag)
    {
        GlobalFree(pi2);
        ClosePrinter(hPrinter);
        if(buffer != NULL)
            delete buffer;
        return FALSE;
    }
    // If GetPrinter didn't fill in the DEVMODE,
    // try to get it by calling DocumentProperties...
    if (pi2->pDevMode == NULL)
    {
        dwNeeded = DocumentProperties(NULL, hPrinter, 
                         pPrinterName,NULL, NULL, 0);
        if (dwNeeded <= 0)
        {
            GlobalFree(pi2);
            ClosePrinter(hPrinter);
            if(buffer != NULL)
                delete buffer;
            return FALSE;
        }
        pDevMode = (DEVMODE *)GlobalAlloc(GPTR, dwNeeded);
        if (pDevMode == NULL)
        {
            GlobalFree(pi2);
            ClosePrinter(hPrinter);
            if(buffer != NULL)
                delete buffer;
            return FALSE;
        }
        lFlag = DocumentProperties(NULL, hPrinter, 
                     pPrinterName, pDevMode, NULL,DM_OUT_BUFFER);
        if (lFlag != IDOK || pDevMode == NULL)
        {
            GlobalFree(pDevMode);
            GlobalFree(pi2);
            ClosePrinter(hPrinter);
            if(buffer != NULL)
                delete buffer;
            return FALSE;
        }
        pi2->pDevMode = pDevMode;
    }
    // Specify exactly what we are attempting to change...
    pi2->pDevMode->dmFields = DM_PAPERSIZE; 
    // Now, change it to whatever was requested by the calling application
    pi2->pDevMode->dmPaperSize = dmPaperSize;
    // Do not attempt to set security descriptor...
    pi2->pSecurityDescriptor = NULL;
    // Make sure the driver-dependent part of devmode is updated...
    lFlag = DocumentProperties(NULL, hPrinter, pPrinterName, 
            pi2->pDevMode, pi2->pDevMode, 
            DM_IN_BUFFER | DM_OUT_BUFFER);
    if (lFlag != IDOK)
    {
        GlobalFree(pi2);
        ClosePrinter(hPrinter);
        if (pDevMode)
            GlobalFree(pDevMode);
        if(buffer != NULL)
            delete buffer;
        return FALSE;
    }
    // Update printer information...
    bFlag = SetPrinter(hPrinter, 2, (LPBYTE)pi2, 0);
    if (!bFlag)
    // The driver doesn't support, or it is unable to make the change...
    {
        GlobalFree(pi2);
        ClosePrinter(hPrinter);
        if (pDevMode)
            GlobalFree(pDevMode);
        if(buffer != NULL)
            delete buffer;
        return FALSE;
    }
    // Tell other apps that there was a change...
    SendMessageTimeout(HWND_BROADCAST, WM_DEVMODECHANGE, 0L, 
             (LPARAM)(LPCSTR)pPrinterName, SMTO_NORMAL, 1000, NULL);
    // Clean up...
    if (pi2)
        GlobalFree(pi2);
    if (hPrinter)
        ClosePrinter(hPrinter);
    if (pDevMode)
        GlobalFree(pDevMode);
    if(buffer != NULL)
        delete buffer;
    return TRUE;
}

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


Written By
Web Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
NewsRe: Change don't affect open applications Pin
leojose4-Dec-05 21:05
leojose4-Dec-05 21:05 
Generalprinting Pin
AlexDa21-Nov-05 23:44
AlexDa21-Nov-05 23:44 
GeneralRe: printing Pin
AlexEvans22-Nov-05 16:47
AlexEvans22-Nov-05 16:47 
GeneralRe: printing Pin
AlexDa25-Nov-05 4:47
AlexDa25-Nov-05 4:47 
Generalgreat Pin
Teashirt221-Nov-05 9:27
Teashirt221-Nov-05 9:27 
GeneralA little overanxious. Pin
WREY21-Nov-05 4:37
WREY21-Nov-05 4:37 
GeneralA little overanxious. Pin
AlexEvans8-Dec-05 20:38
AlexEvans8-Dec-05 20:38 
GeneralRe: A little overanxious. Pin
WREY9-Dec-05 13:37
WREY9-Dec-05 13:37 
Didn't your father explain to you the difference between constructive criticism and destructive ones?

Hmmm | :|

William

Fortes in fide et opere!

-- modified at 19:38 Friday 9th December, 2005

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.