I recently upgraded from Acrobat 5.0 to 6.0 (Standard). I have VBA code the previously worked well in 5.0 to create postscript files.
The code does not work as is for Acrobat Distiller 6.0.
Code Being Used:
Dim PSFileName As String
Application.ActivePrinter = "Acrobat Distiller on Ne00:"
Application.Goto Reference:="r1c1"
Let PSFileName = Application.ActiveCell
SendKeys PSFileName & "{ENTER}", False
Sheets("ECN FacePage").PageSetup.PrintArea = "$F$5:$R$55"
Worksheets.PrintOut , PrintToFile:=True
PSFileName = Chr(34) & PSFileName & Chr(34)
How do I find the name to use on the line for, Application.ActivePrinter = "Acrobat Distiller on Ne00:" ?
Thanks for any assistance.
The code does not work as is for Acrobat Distiller 6.0.
Code Being Used:
Dim PSFileName As String
Application.ActivePrinter = "Acrobat Distiller on Ne00:"
Application.Goto Reference:="r1c1"
Let PSFileName = Application.ActiveCell
SendKeys PSFileName & "{ENTER}", False
Sheets("ECN FacePage").PageSetup.PrintArea = "$F$5:$R$55"
Worksheets.PrintOut , PrintToFile:=True
PSFileName = Chr(34) & PSFileName & Chr(34)
How do I find the name to use on the line for, Application.ActivePrinter = "Acrobat Distiller on Ne00:" ?
Thanks for any assistance.