Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
PEMSTATUS() Function
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00827554
Message ID:
00827595
Vues:
18
Sure, It is pretty much this:
LPARAMETERS oRecord

cFieldName = "SomeField"

IF PEMSTATUS(oRecord, cFieldName, 5)
  ** Worked
ELSE
  ** Failed
ENDIF
I changed it to:
LPARAMETERS oRecord

cFieldName = "SomeField"
cString = "oRecord." + cFieldName

IF TYPE(cString)
  ** Worked
ELSE
  ** Failed
ENDIF
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform