Hi all,
I have a program which connects to sql and uses crystal reports. I have many records and crystal reports takes a while to load up. Would multi threading help improve performance? Here is my code:
Private Sub EmpLog_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim report As New Crystal_Report1
report.SetParameterValue("EmployeeName", DSReport.Tables(0).Rows(0).Item("name"))
report.SetDatabaseLogon("login", "password")
CrystalReportViewer1.ReportSource = report
End Sub
I want to somehow speed this up. Thanks in advance.