View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default VBA Problem - Print Preview

Carl,

You can't do it for Print Preview exclusively. You can use the
BeforePrint event of the Workbook, but this executes for both
printing and print preview. Sadly, there is no AfterPrint
event, so you can't restore the settings you change in
BeforePrint. Put the following code in the ThisWorkbook code
module.

Private Sub Workbook_BeforePrint(Cancel As Boolean)
' your code here
End Sub



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"carljonesuk " wrote
in message ...
Is it possible for excel to run a macro whebn i close Print

Preview?

A macro runs to go to print preview to modify row height to fit
contents to page and I want to excel to run amacro to return

them to
original size when i close the print preview!

Is this possible to do?

Any help would be useful!

Thanks

Carl Jones


---
Message posted from http://www.ExcelForum.com/