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

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Whats in the Print_cards macro ???
 
Upvote 0
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,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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