I am running Crystal Reports 9 and VB 6.0. My report will only display 0
value in one of the data fields if I don't add some type of pause or loop to
insert a delay while Crystal fetches and displays the report.
I have tried many suggestions I have seen online with nothing working, and I
see others having the same problem. Here is my code, any ideas on how I can
get the data to refresh without adding a time delay?
With CRView
.ReportSource = miReport
.ViewReport
While .IsBusy
DoEvents
.Wend
.Refresh
.Zoom "90"
.Visible = True
End With
Thanks,
Andrew
value in one of the data fields if I don't add some type of pause or loop to
insert a delay while Crystal fetches and displays the report.
I have tried many suggestions I have seen online with nothing working, and I
see others having the same problem. Here is my code, any ideas on how I can
get the data to refresh without adding a time delay?
With CRView
.ReportSource = miReport
.ViewReport
While .IsBusy
DoEvents
.Wend
.Refresh
.Zoom "90"
.Visible = True
End With
Thanks,
Andrew