What is the VBA code that is causing you grief ?
Perhaps someone can help, if we saw the code ?
Ivan
Here's the code... The sendkeys command is suppose to buffer the information until the "print to file" screen appears. Nothing happens.
Application.DisplayAlerts = False
Application.Goto Reference:="Print_Area"
Columns("A:A").Select
Range("A2").Activate
stmt = "c:\temp\AsapTest1.prn" & "{ENTER}"
SendKeys stmt, False
ActiveWindow.SelectedSheets.PrintOut ActivePrinter:= _
"\\RAMSWP02\WFC_7_7610 on Ne00:", PrintToFile:=True
JP
Here's the code... The sendkeys command is suppose to buffer the information until the "print to file" screen appears. Nothing happens.
Application.DisplayAlerts = False
Application.Goto Reference:="Print_Area"
Columns("A:A").Select
Range("A2").Activate
stmt = "c:\temp\AsapTest1.prn" & "{ENTER}"
SendKeys stmt, False
ActiveWindow.SelectedSheets.PrintOut ActivePrinter:= _
"\\RAMSWP02\WFC_7_7610 on Ne00:", PrintToFile:=True
JP
Ivan,
I take that back. The code does work. I was running it in debug mode so the buffer would release the command in debug mode not at the pop up window.
Would you know if there is a way to write to apple drivers in stead of the apple printer?
JP