Hello,
Using the following CommonDialog control code:
CommonDialog1.CancelError = True
On Error Resume Next
CommonDialog1.ShowPrinter
If Err.Number = 32755 Then Exit Sub ' user cancelled
it would be expected that when the user clicks the cancel button on the
Print dialog w...
more >>