G Guest Oct 6, 2005 #1 Is it possible to have the page range section on the print window to default to Current Page instead of All?
Is it possible to have the page range section on the print window to default to Current Page instead of All?
J Jay Freedman Oct 6, 2005 #2 gemaus said: Is it possible to have the page range section on the print window to default to Current Page instead of All? Click to expand... Add this macro to your template, using the instructions at http://www.gmayor.com/installing_macro.htm: Sub FilePrint() Dim dlg As Dialog Set dlg = Dialogs(wdDialogFilePrint) With dlg .Range = wdPrintCurrentPage .Show End With Set dlg = Nothing End Sub
gemaus said: Is it possible to have the page range section on the print window to default to Current Page instead of All? Click to expand... Add this macro to your template, using the instructions at http://www.gmayor.com/installing_macro.htm: Sub FilePrint() Dim dlg As Dialog Set dlg = Dialogs(wdDialogFilePrint) With dlg .Range = wdPrintCurrentPage .Show End With Set dlg = Nothing End Sub