A
Addy
I have loads of printing macros which are all working great now thanks to
help from this site. I have a macro which opens up the dialog box of a
colour photocopier so that you can do any special printing such as duplex,
staple, holepunch etc. The macro seems to be sticking to the colour printer
and so when I use one of the other macros to print to the laser printer it
prints to teh colour printer. Anyone any ideas why please. My macro is below
cheers in advance
Private Sub CMDCOLSPECIAL_Click()
With Dialogs(wdDialogFilePrintSetup)
.Printer = "\\rother\Canon"
.DoNotSetAsSysDefault = True
.Execute
Dialogs(wdDialogFilePrint).Show
End With
End Sub
help from this site. I have a macro which opens up the dialog box of a
colour photocopier so that you can do any special printing such as duplex,
staple, holepunch etc. The macro seems to be sticking to the colour printer
and so when I use one of the other macros to print to the laser printer it
prints to teh colour printer. Anyone any ideas why please. My macro is below
cheers in advance
Private Sub CMDCOLSPECIAL_Click()
With Dialogs(wdDialogFilePrintSetup)
.Printer = "\\rother\Canon"
.DoNotSetAsSysDefault = True
.Execute
Dialogs(wdDialogFilePrint).Show
End With
End Sub