View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
lance99 lance99 is offline
external usenet poster
 
Posts: 4
Default Printing PDF from Excel

I have a very simple macro that prints part of an Excel workbook to PDF, it
works fine on my computer but when someone else trys to use it, it errors
out. The code is:


Sub CC()
'
' Adobe Macro
' Macro recorded 4/7/2005 by kbrand
'

'
Sheets(Array("CC", "CC_")).Select
Application.ActivePrinter = "Adobe PDF on Ne01:"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, ActivePrinter:= _
"Adobe PDF on Ne01:", Collate:=True
Sheets("Input").Select
End Sub

The issue is my Adobe PDF is on Ne01 while everyone else's it Ne00, I have
searched high and low looking for a solution. Hopefully somebody can help.

Thanks,

Kevin