Hi,
I have a need to print directly to the default printer without being prompted for printer select, number of copies etc
I am using the follwoing code from the Stimulsoft FAQ, but I am still being presented with the Printer Dialog box.
Dim Report As StiReport = New StiReport()
Report.Load("report.mrt")
Report.Render()
Dim PrinterSettings As PrinterSettings = New PrinterSettings()
PrinterSettings.Copies = 2
Report.Print(PrinterSettings)
Can you tell me if thewre is somethig else I need to do?
Thanks,
JOn.
Problem Printing Straight To printer
Problem Printing Straight To printer
Scratch that! Found the answer
Report.Print(False)
Don't need the printersetting stuff. Doh!
Report.Print(False)
Don't need the printersetting stuff. Doh!
Problem Printing Straight To printer
Excellent! :biggrin: