M
MJones
Hi,
I'm trying to do this:
Sub FilePreview()
'
' FilePreview Macro
' Previews the active document without drawing objects
'
If Application.PrintPreview = False Then
Options.PrintDrawingObjects = False
ActiveDocument.PrintPreview
End If
Options.PrintDrawingObjects = True
End Sub
So drawing objects don't show when previewing, but turn back on
afterwards. It works in my print macro (see below), but can't
understand why this doesn't work for FilePreview. Any ideas? Word
2003.
Sub FilePrintDefault()
'
' FilePrintDefault Macro
' Prints the active document without drawing objects
'
Options.PrintDrawingObjects = False
Dialogs(wdDialogFilePrint).Show
Options.PrintDrawingObjects = True
End Sub
Thanks,
Michele
I'm trying to do this:
Sub FilePreview()
'
' FilePreview Macro
' Previews the active document without drawing objects
'
If Application.PrintPreview = False Then
Options.PrintDrawingObjects = False
ActiveDocument.PrintPreview
End If
Options.PrintDrawingObjects = True
End Sub
So drawing objects don't show when previewing, but turn back on
afterwards. It works in my print macro (see below), but can't
understand why this doesn't work for FilePreview. Any ideas? Word
2003.
Sub FilePrintDefault()
'
' FilePrintDefault Macro
' Prints the active document without drawing objects
'
Options.PrintDrawingObjects = False
Dialogs(wdDialogFilePrint).Show
Options.PrintDrawingObjects = True
End Sub
Thanks,
Michele