Mar 9, 2001 #1 wellerp Instructor Mar 1, 2001 3 US The Common Dialog box is easy to use. Especially CommonDialog1.ShowPrinter BUT how to I check to see if the user clicked "Cancel"?
The Common Dialog box is easy to use. Especially CommonDialog1.ShowPrinter BUT how to I check to see if the user clicked "Cancel"?
Mar 12, 2001 #2 TomB Programmer Feb 23, 2001 27 DE You can find this in the General discussion-Forum : cdlg.CancelError = True On Error Resume Next cdlg.ShowPrinter If Err.Number = 32755 Then MsgBox ("Cancel" Tom Upvote 0 Downvote
You can find this in the General discussion-Forum : cdlg.CancelError = True On Error Resume Next cdlg.ShowPrinter If Err.Number = 32755 Then MsgBox ("Cancel" Tom