I am developing software using VB6 and Crystal Reports 8.5.
When debugging I have found that it takes a long time for the compiler to create a new Crystal Reports object.
Here is the code:
Private mobjReport As rptProject
Private Sub Form_Load()
Set mobjReport = New rptProject ''takes long time do to
mobjReport.txtSerial = GetLastSerialNumber
End Sub
Why is this and how can I make it faster?