Error when printing using a print macro

jmayna

New Member
Joined
Nov 30, 2010
Messages
5
Hi all,

I've tried putting a macro in my workbook so that it doesn't print the first sheet when you hit 'print all active worksheets' in the print dialog box. Whilst it works for sending it to a printer it sometimes returns an error when printing to PDF. Any ideas?

The code I've used is:

Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
On Error GoTo errhandler
 
Application.DisplayAlerts = False
Application.EnableEvents = False
ThisWorkbook.Worksheets("Setup").Visible = xlVeryHidden
Application.Dialogs(xlDialogPrint).Show
ThisWorkbook.Worksheets("Setup").Visible = xlSheetVisible
Application.DisplayAlerts = True
Application.EnableEvents = True
Cancel = True
Exit Sub
 
errhandler:
MsgBox "Print Error, Unable To Print", vbCritical
Application.DisplayAlerts = True
Application.EnableEvents = True
End Sub

Many thanks,

Jon
 
Last edited by a moderator:

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

Forum statistics

Threads
1,214,887
Messages
6,122,095
Members
449,064
Latest member
Danger_SF

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