
Originally Posted by
DaveDavis
Thanks, We can read/write registry by temporarily set the value to 1, after app called "old style" Print Dialog, then restore original registry setting in our program.
HI
This preview line no longer advanced and stopped without continuing and it was impossible to print.
I used this line and perfectly now I can print from my VB6 APP also with 23H2 of windows11...
Code:
reg add "HKCU\Software\Microsoft\Print\UnifiedPrintDialog" /v "PreferLegacyPrintDialog" /d 1 /t REG_DWORD /f
If I wanted to restore the other mode how should I insert the line to re-enable "as WIN11 23H2 did before"?
probably with:
Code:
reg delete "HKCU\Software\Microsoft\Print\UnifiedPrintDialog" /v "PreferLegacyPrintDialog" /f
Thanks