Cancel button not canceling

Sahak

Well-known Member
Joined
Nov 10, 2006
Messages
1,012
Office Version
  1. 2016
  2. 2013
  3. 2011
  4. 2010
  5. 2007
Hi all,

Because I need to print on other printer than default, I use VBA code to show all available printers, then select needed printer & print:
Code:
 Sub Show_PrintersDialog_and_Print_Cards()
    Application.Dialogs(xlDialogPrinterSetup).Show
    Call Print_Cards
End Sub
The problem is this: Dialog has three buttons: Setup…, OK, Cancel

Setup - is for setting up document properties, it is normal
OK - prints, it is normal
Cancel - also prints, Not Normal, How to really cancel (do not print, close dialog) ?
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Try this...when it works, remove the MsgBox line

Code:
Sub Show_PrintersDialog_and_Print_Cards()
    Application.Dialogs(xlDialogPrinterSetup).Show
If vbCancel Then
MsgBox "Cancelled"
Exit Sub
End If
Call Print_Cards
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top