Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Determine if grid is empty not using recno
Message
From
11/08/2005 16:47:11
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01040343
Message ID:
01040413
Views:
18
>Tracy,
>
>I'm guessing that you can't use RECCOUNT() either. I'm also guessing that you can't use it because you have a RecordSource that has data, but also has a filter applied and you need to determine when no data meets the filter requirements. If all of that is the case, then you could do something like this:
>
>LOCAL ARRAY laCount[1]
>LOCAL lcFilter as String
>
>laCount = 0
>lcFilter = SET('Filter')
>
>SELECT COUNT(*) ;
>  FROM (thisform.Grid1.RecordSource) ;
>  WHERE &lcFilter
>
>RETURN (NVL(laCount[1], 0) > 0)
>
>Make that a function and it will return .t. if the current RecordSource contains any rows that meet the current filter condition.
>
>HTH,
>Chad
>

If you have a filterd index active, this is not sufficient.

>
>>Is there another way to determine if a grid is empty with zero rows (no records) without using EOF() on the recordsource of the grid?
Previous
Reply
Map
View

Click here to load this message in the networking platform