1
This page說,你需要調用PrintSetupDlg,但是這個代碼如何在Windows CE Direct-X應用程序中顯示(打印機)對話框?
PAGESETUPDLG printDialog;
ZeroMemory(&printDialog, sizeof(printDialog));
printDialog.lStructSize = sizeof(printDialog);
printDialog.hwndOwner = hwnd; //or = NULL
PageSetupDlg(&printDialog);
凍結在調用PageSetupDlg程序 - 它變得反應遲鈍,我需要停止進程。
如何在Windows CE中打印?(在DirectX應用程序中使用C++,CE 6.0)