I have a
VB application which prints templates from word using the users default print driver then it saves the output to a file using the default print driver.
This is the code which saves the file.
************************************************** ****************
Sub MakeImageFile()
If gsFilename <> "ERROR" Then
ActiveDocument.PrintOut OutputFileName:=Trim(gsFilename), PrintToFile:=True
End If
End Sub
************************************************** ****************
I need to save the output using a different print driver.
I prefer that all of this be hidden from the user.
Is there a way to change the print driver within this macro?