Fox, FoxPro
Two variables that don't exist until you declare them, and then they're immediately .T., these were added in an era when generic Xbase code could bracket functions that should run only under the Fox languages.
Usage |
PUBLIC FOX | FOXPRO lRunningWithTheFox = FOX | FOXPRO |
Parameter |
Value |
Meaning |
lRunningWithTheFox |
.T. |
When you're running in a Fox product, FOXPRO is true in FoxPro 1.x or later, while FOX is true in FoxBase and later. |
.F. |
Running under some other language. |
Example |
RELEASE FOXPRO PUBLIC FOXPRO IF FOXPRO * do it right� ENDIF |
See Also |