J
Johny
Hello,
I am trying to get a printing icon in outlook which allows me to print to
another printer other than the 'default' printer.
I managed to do this with Word using the following Macro:
Sub staffColour()
Dim sCurrentPrinter As String
sCurrentPrinter = ActivePrinter
ActivePrinter = "//server_machine/colour printer"
Application.PrintOut FileName:=""
ActivePrinter = sCurrentPrinter
End Sub
My problem is that the command << Application.PrintOut FileName:="" >> does
not work in Outlook.
Anyone knows which commands will print in Outlook?
Thanks a lot,
Johny
I am trying to get a printing icon in outlook which allows me to print to
another printer other than the 'default' printer.
I managed to do this with Word using the following Macro:
Sub staffColour()
Dim sCurrentPrinter As String
sCurrentPrinter = ActivePrinter
ActivePrinter = "//server_machine/colour printer"
Application.PrintOut FileName:=""
ActivePrinter = sCurrentPrinter
End Sub
My problem is that the command << Application.PrintOut FileName:="" >> does
not work in Outlook.
Anyone knows which commands will print in Outlook?
Thanks a lot,
Johny