Link to home
Start Free TrialLog in
Avatar of npbaker1
npbaker1

asked on

Unsure how to print crystal report without viewing first

I am developing a report that is going to be sent out to a company so that we can get prices on materials we need to do jobs.  The user is going can select multiple companies at the same time and each one is going to be treated as a seperate report.  I am storing all of the data the user selects in a database ie the parameter values to be passed to the report.  After I do that I want all of the reports to print automatically.  I have looked at questions similar but have not been able to figure out how to implement the solution.  If someone could give me some advice I would greatly appreciate it.

Thanks
Nate
ASKER CERTIFIED SOLUTION
Avatar of jake072
jake072
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hope you have a ReportDocument Object with you. Use,

rpDOC.PrintToPrinter(0,False,0,0)

This will print the report on the default printer set in the PC and all pages. more options can be set at
rpDOC.PrintOptions property.

Thanks.