Hi guys, i have a problem, i am displaying some crystal reports on some pages but when the user wants to print it, the data disappears and all you see is the labels, what can i do to solve this? can any one help me plz? thanks CrystalReportViewer2.Visible = False
CrystalReportViewer1.Visible = True
CrystalReportViewer1.RefreshReport()
CrystalReportViewer1.SelectionFormula = "{Folios_refacciones_almacen.folio_almacen} " & rangofoliosformula & _
" and {Folios_refacciones_almacen.planta} = '" & ddlplanta.SelectedValue & "'"
Dim ConnInfo As New ConnectionInfo
With ConnInfo
.ServerName = "server"
.DatabaseName = "database"
.UserID = "sa"
.Password = "sa"
End With
For Each cnInfo As TableLogOnInfo In Me.CrystalReportViewer1.LogOnInfo
View Complete Post