Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
PEMSTATUS() Function
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00827554
Message ID:
00827595
Views:
17
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
Previous
Reply
Map
View

Click here to load this message in the networking platform