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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal Reports NO_DATA event?

Status
Not open for further replies.

dpatrickcollins

Programmer
Nov 18, 2002
79
Hi all,

I am using Crystal 10 integrating with vb.net 2003. What happened to the "NO_DATA" event or better yet, what is the best way to determine whether a report has returned no data or not in the .net environment using the Crystal 10 API?

Thanks, I have scoured the web today and can find NOTHING on the topic.
 
One way is to create a formula along the lines of:

onfirstrecord;
if {Customer.Country} = {Customer.Country} then true else false

And place it in the report header

The formula will return True if no data is returned on the report and a null value if data is returned.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top