Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HELP! missing data without adding delay (timer or loop)

Status
Not open for further replies.

huskycat

Technical User
Apr 8, 2004
1
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top