J
Janine
Hi,
Is Ctrl P obsolete in 2010 as it is the old FilePrint screen that was
intercepted? Ctrl P moves to Print and Preview screen (now one dialogue)
(same as Ctrl F2).
Sub FilePrint() intercepts old vba Print Screen - Is Ctrl P therefore
obsolete in 2010 because FilePrint screen is for previous versions?
All one can do in Print and Print Preview is press PRINT button there is no
OK button.
So how does one automate the PRINT button execution for old FilePrint()
intercept macros when using Ctrl P to print?
'ActiveDocument.PrintOut Background:=False
Can someone please comment. Thank you.
Sub FilePrint()
' Does not intercept
' Hide no entries
' print
Dialogs(wdDialogFilePrint).Show *Brings up old Print Screen for
2007 2003 etc
'Dialogs(wdDialogFilePrint).Execute Just Prints
End Sub
Sub FilePrintDefault() quickprint (prints immediately)
ActiveDocument.PrintOut Background:=False
End Sub
Is Ctrl P obsolete in 2010 as it is the old FilePrint screen that was
intercepted? Ctrl P moves to Print and Preview screen (now one dialogue)
(same as Ctrl F2).
Sub FilePrint() intercepts old vba Print Screen - Is Ctrl P therefore
obsolete in 2010 because FilePrint screen is for previous versions?
All one can do in Print and Print Preview is press PRINT button there is no
OK button.
So how does one automate the PRINT button execution for old FilePrint()
intercept macros when using Ctrl P to print?
'ActiveDocument.PrintOut Background:=False
Can someone please comment. Thank you.
Sub FilePrint()
' Does not intercept
' Hide no entries
Dialogs(wdDialogFilePrint).Show *Brings up old Print Screen for
2007 2003 etc
'Dialogs(wdDialogFilePrint).Execute Just Prints
End Sub
Sub FilePrintDefault() quickprint (prints immediately)
ActiveDocument.PrintOut Background:=False
End Sub