View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Randall Arnold[_2_] Randall Arnold[_2_] is offline
external usenet poster
 
Posts: 17
Default Macro to close workbook when file print is selected

By the time your code tries to execute, the print has long since spooled off
to the queue. By then it's too late to intercept.

Are you using the BeforePrint event to capture the Print attempt? That's
the appropriate place to do so. Insert the line Cancel = True to abort
prints BEFORE they get to the queue.

In addition, I *think* there's a way to prevent sheets from being printed as
an option, but I may be wrong.

Randall Arnold

"Phil" wrote in message
...
Good morning; I am using Windows 2000 and Excel 2000.
I have the following macro for a read only file. The
Workbook file contains two worksheets. I need to prevent
users from printing either sheet since they are extremely
large, (2,000 pages). The macro is being executed but the
file still prints. What am I missing here?
Thanks
Phil

If ActiveWindow.SelectedSheets.PrintOut = True Then
MsgBox ("This File Is over 1,900 Pages and Too Large to
Print")
ActiveWorkbook.Close
End If
End Sub