Group: Forum Members
Last Active: 13 Years Ago
Posts: 4,
Visits: 1
|
Hi,
The Print manager does not work at all when using 64bit build. The call printManager.Print(true) or button in printManager.ShowPrintPreview();
I believe the correct fix for this is to set the internal PrintDialog to UseEXDialog;
Example:
PrintDialog oform = new PrintDialog(); oform.UseEXDialog = true; oform.ShowDialog(this);
Hai
|