如何:從使用者收集列印工作資訊
本主題描述如何從使用者收集列印工作資訊。
概觀
呼叫 PrintDlg 函式,從使用者收集列印工作資訊。 此函式會向使用者顯示 [列印 一般] 對話方塊,並傳回 PRINTDLG 資料結構中的列印工作資訊。
當使用者啟動列印工作時,會顯示 [ 列印 一般] 對話方塊。 [ 列印 通用] 對話方塊是強制回應對話方塊,這表示使用者無法在關閉通用對話方塊之前與主視窗互動。
收集列印工作資訊
初始化 PRINTDLG 結構專案。
程式必須先配置並初始化PRINTDLG結構,才能顯示 [列印一般] 對話方塊。 然後,它會將此結構傳遞至 PrintDlg 函式,此函式會顯示對話方塊,並傳回相同結構中的列印工作資料。 下列程式碼範例示範範例程式如何執行此步驟。
// Initialize the print dialog box's data structure. pd.lStructSize = sizeof( pd ); pd.Flags = // Return a printer device context PD_RETURNDC // Don't allow separate print to file. | PD_HIDEPRINTTOFILE | PD_DISABLEPRINTTOFILE // Don't allow selecting individual document pages to print. | PD_NOSELECTION;
顯示 [ 列印 一般] 對話方塊。
使用初始化的 PRINTDLG 結構呼叫 PrintDlg ,以顯示 [ 列印 通用] 對話方塊並收集使用者資料,如下列程式碼範例所示。
// Display the printer dialog and retrieve the printer DC pdReturn = PrintDlg(&pd);
儲存 PRINTDLG 結構的欄位,然後啟動列印工作。
PRINTDLG結構包含資料,描述使用者在列印對話方塊中所做的選取專案。 PRINTDLG結構的一些成員是全域記憶體物件的控制碼。 列印範例程式會將資料從全域記憶體物件複製到程式管理的其他欄位,並將其他欄位從PRINTDLG結構複製到程式所定義之資料結構中的欄位。
將 PRINTDLG 結構中的資料儲存在程式的資料結構之後,您可以開啟 [列印進度] 對話方塊。 列印進度對話方塊程式會處理對話方塊訊息,並啟動列印處理執行緒。
下列程式碼範例示範如何將 資料從 PRINTDLG 結構複製到程式的資料結構,以及如何啟動列印工作。
// A printer was returned so copy the information from // the dialog box structure and save it to the application's // data structure. // // Lock the handles to get pointers to the memory they refer to. PDEVMODE devmode = (PDEVMODE)GlobalLock(pd.hDevMode); LPDEVNAMES devnames = (LPDEVNAMES)GlobalLock(pd.hDevNames); // Free any old devmode structures and allocate a new one and // copy the data to the application's data structure. if (NULL != threadInfo->devmode) { HeapFree(GetProcessHeap(), 0L, threadInfo->devmode); } threadInfo->devmode = (LPDEVMODE)HeapAlloc( GetProcessHeap(), PRINT_SAMPLE_HEAP_FLAGS, devmode->dmSize); if (NULL != threadInfo->devmode) { memcpy( (LPVOID)threadInfo->devmode, devmode, devmode->dmSize); } else { // Unable to allocate a new structure so leave // the pointer as NULL to indicate that it's empty. } // Save the printer name from the devmode structure // This is to make it easier to use. It could be // used directly from the devmode structure. threadInfo->printerName = threadInfo->devmode->dmDeviceName; // Set the number of copies as entered by the user threadInfo->copies = pd.nCopies; // Some implementations might support printing more than // one package in a print job. For this program, only // one package (XPS document) can be printed per print job. threadInfo->packages = 1; // free allocated buffers from PRINTDLG structure if (NULL != pd.hDevMode) GlobalFree(pd.hDevMode); if (NULL != pd.hDevNames) GlobalFree(pd.hDevNames); // Display the print progress dialog box DialogBox( threadInfo->applicationInstance, MAKEINTRESOURCE(IDD_PRINT_DLG), hWnd, PrintDlgProc);
如果使用者按一下 [列印一般] 對話方塊中的 [取消] 按鈕,則不會執行進一步的處理。