Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Get message box if first 10 records are empty
Message
De
18/01/2007 12:35:24
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Divers
Thread ID:
01186697
Message ID:
01186728
Vues:
27
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform