Hi,

So far I have everything working fine. I have a form that contains CrystalReportViewer1 which has it's report source set to the report I created in crystal. Currently while I'm still developing, I have: CrystalReportViewer1.Show()

What I need to know is how to make this go directly to the printer like a batch print. Am I not suppose to use the crystalreportviewer?


What I currently have:

'==> Call barcode report
Dim frmreport As New frmReport()
frmreport.Show()


Private Sub frmReport_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load

Report = New BarCode1()

CrystalReportViewer1.ReportSource = Report
CrystalReportViewer1.Show()

End Sub

I tried changing CrystalReportViewer1.Show() to CrystalReportViewer1.PrintReport() but it didn't work, nothing happened, no errors just nothing printed.

Can anyone see what my problem might be?

Thanks,
Corinne