Hello All,
When sending a report to the Document Agent, one of the available actions is “print”. My goal is to have the end user get their scheduled report refreshed and sent to a network printer. So my question is, how do you control the print options within the Document Agent Console? Craig Stark
g GE Electrical Distribution & Control
You cannot control the print options within the Console. The print command goes to the default printer on the DAS. In order to print to network printers, you have to use scripting (until hopefully this is built into DAS!). Use the PrintOut command:
Sub Main()
Dim doc as BODocument
set doc = Applciation.Documents.Item(1)
doc.Refresh
doc.PrintOut("\server\printershare")
End Sub
Tim
So my question is, how do
you control the print options within the Document Agent Console?
Is there a way to remove the print option? I can not find anything in the DAS options to remove the print option off the list of available tasks for the user.
From: Heuer Tim K[SMTP:Heuer_TK@EXCHANGE.PHS.COM]
Sent: Friday, July 17, 1998 10:09 AM
You cannot control the print options within the Console. The print command goes to the default printer on the DAS. In order to print to network printers, you have to use scripting (until hopefully this is built into DAS!). Use the PrintOut command:
Sub Main()
Dim doc as BODocument
set doc = Applciation.Documents.Item(1) doc.Refresh
doc.PrintOut(“\server\printershare”)
End Sub
Tim
So my question is, how do
you control the print options within the Document Agent Console?