Mar 9, 2001 #1 wellerp Instructor Joined Mar 1, 2001 Messages 3 Location 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 Joined Feb 23, 2001 Messages 27 Location 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