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
|
Group: Forum Members
Last Active: Last Week
Posts: 3,054,
Visits: 4,009
|
Hi Hai, Thank you for the tip.
You're correct that the PrintDialog does not work correctly under 64 bit - which is in general a MS bug. Notice that more recent updates of Windows 7 seem to have fixed this problem. What is the OS you're working with?
Best Regards, Nevron Support Team
|
Group: Forum Members
Last Active: 13 Years Ago
Posts: 4,
Visits: 1
|
I am using windows 7 64-bit.
Hai
|
Group: Forum Members
Last Active: Last Week
Posts: 3,054,
Visits: 4,009
|
Hi Hai, We modified the control to use the UseExDialog and the change will appear in the next SP of the control (early next week). We could not replicate the problem or Win7 though it was definately there a couple of months ago so most likely Windows automatic update has fixed this...
Best Regards, Nevron Support Team
|