How to Change Default Printer Settings in an MFC Application

Last reviewed: October 10, 1997
Article ID: Q126897
1.50 1.51 1.52 | 1.00 2.00 2.10
WINDOWS        | WINDOWS NT
kbprg kbprint kbcode

The information in this article applies to:

  • The Microsoft Foundation Classes (MFC), included with:

        - Microsoft Visual C++ for Windows, versions 1.5, 1.51, 1.52
        - Microsoft Visual C++, 32-bit Edition, versions 2.00, 2.10
    

SUMMARY

To change the default printer settings in an MFC application, you must retrieve the system default settings in a CWinApp derived object and modify those defaults before a print job is invoked.

MORE INFORMATION

Default printer driver settings in an MFC application are maintained in the CWinApp object. These settings take the form of the following two protected member variables:

  • m_hDevMode, which is a handle to a global memory object that contains a DEVMODE structure.
  • m_hDevNames, which is a handle to a global memory object that contains a DEVNAMES structure.

These variables are initialized to NULL by MFC when the application starts. The first time a print operation is invoked, the global default printer settings are retrieved in these variables. All subsequent print operations in the application will take their printer settings from these variables.

To set an application's default printer settings to something different from the system defaults, the application must retrieve the system defaults before a print operation and modify the values in the appropriate member variable in the CWinApp derived object. To retrieve the system defaults, you can use the CWinApp::GetPrinterDeviceDefaults() function.

Sample Code

For example, if you want to set the orientation in your application to landscape mode, you could use a function similar to the following where CMyWinApp is a class derived from the CWinApp class:

void CMyWinApp::SetLandscape()
    {
    // Get default printer settings.
    PRINTDLG   pd;

    pd.lStructSize = (DWORD) sizeof(PRINTDLG);
    if (GetPrinterDeviceDefaults(&pd))
        {
        // Lock memory handle.
        DEVMODE FAR* pDevMode =
            (DEVMODE FAR*)::GlobalLock(m_hDevMode);
        LPDEVNAMES lpDevNames;
        LPTSTR lpszDriverName, lpszDeviceName, lpszPortName;
        HANDLE hPrinter;


        if (pDevMode)
            {
            // Change printer settings in here.
            pDevMode->dmOrientation = DMORIENT_LANDSCAPE;
           // Unlock memory handle.
       lpDevNames = (LPDEVNAMES)GlobalLock(pd.hDevNames);
       lpszDriverName = (LPTSTR )lpDevNames + lpDevNames->wDriverOffset;
       lpszDeviceName = (LPTSTR )lpDevNames + lpDevNames->wDeviceOffset;
       lpszPortName   = (LPTSTR )lpDevNames + lpDevNames->wOutputOffset;

       ::OpenPrinter(lpszDeviceName, &hPrinter, NULL);
       ::DocumentProperties(NULL,hPrinter,lpszDeviceName,pDevMode,
                           pDevMode, DM_IN_BUFFER|DM_OUT_BUFFER);

       // Sync the pDevMode.
       // See SDK help for DocumentProperties for more info.
       ::ClosePrinter(hPrinter);
       ::GlobalUnlock(m_hDevNames);
       ::GlobalUnlock(m_hDevMode);
       }
    }
}

If you want landscape to be the default orientation for the application, you would call this function before any print job was invoked. A good place to do this would be in your CWinApp derived class's InitInstance() function.


Additional reference words: kbinf 1.52 2.00 2.10 2.52 3.00 3.10 printing
KBCategory: kbprg kbprint kbcode
KBSubcategory: MfcPrinting
Keywords : MfcPrinting kbcode kbprg kbprint
Technology : kbMfc
Version : 1.50 1.51 1.52 | 1.00 2.00 2.10
Platform : NT WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 10, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.