I have custom control with print toolbar item.when print the control the dialog is not coming in windows 7 with 64 bit os in other system os working fine. problem only in windows 7 with 64 bit.
my problem printdialog is not coming in windows 7 os with 64 bit.
i have checked and anlyaed -->PrintDialog.ShowDialog() returns immeaditely cancel instaed of showing the dialog thats the problem.
i have found the solution for the problem by searched following links:
http://social.msdn.microsoft.com/Forums/en/netfx64bit/thread/8760fb6c-ae63-444e-9606-cd3295ce6b5d
http://msdn.microsoft.com/en-us/library/system.windows.forms.printdialog.useexdialog.aspx
by setting true to UseExDialog property of printdialog the dialog comes and working fine.but this dialog style is like windows XP not windows7 style.so this is not excat solution.
UseExDialog property sets to true means working fine.but the print dialog style looks like windows XP print not like windows 7. i need some other solution for showing print dialog in windows 7 os with 64 bit.
please provide complete solution for this problem
Thanks
Siva
I got the same issue for my .net framework v3.5, upgraded solution to .net framework v4.5 and it worked well.
If you can't or don't like to set
UseEXDialog = true
an alternative would be setting yourPlattform
tox86
Setting the dialog object property
AutoUpgradeEnabled
to false corrected the problem when executing in Windows 7 SP1 64-bit (solution was compiled using VS2008 and .net 2.0).Ex.
Per Microsoft's Forums:
In my case the 2nd known issue was it... we upgraded from .NET 2.0 to .NET 4.0 and it started working again without any code changes (to the printing).