Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get message box if first 10 records are empty
Message
From
18/01/2007 12:35:24
 
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01186697
Message ID:
01186728
Views:
25
This message has been marked as the solution to the initial question of the thread.
>I getting data directoly not using cursor i try:
><>
>SELECT exam
>If obt01>=min01
> =MESSAGEBOX("check column4 box,if empty")
> RETURN =.t.
>ENDIF

If it's for first 10 records only then it should be like this:
select top 10 [order_field],obt01,min01 from exam ;
  into cursor mycursor nofilter order by 1
select mycursor
locate for obt01>=min01
if found()
  =MESSAGEBOX("check column4 box,if empty")
endif
Edward Pikman
Independent Consultant
Previous
Reply
Map
View

Click here to load this message in the networking platform