How to Change Default Printer Settings in an MFC ApplicationLast reviewed: October 10, 1997Article ID: Q126897 |
1.50 1.51 1.52 | 1.00 2.00 2.10
WINDOWS | WINDOWS NTkbprg kbprint kbcode The information in this article applies to:
SUMMARYTo 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 INFORMATIONDefault 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:
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 CodeFor 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
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |