Sys(2030)
This function, added in VFP 7, determines whether the Debugger features can see various system components that are written in VFP. It makes it easier to debug your own code, while still offering the possibility of debugging system components or your home-grown replacements for them.
Usage |
cDebugStatus = SYS( 2030 [, nDebugComponents ] ) |
Parameter |
Value |
Meaning |
nDebugComponents |
0 |
Set the Debugger to ignore system components. |
1 |
Set the Debugger to see system components. |
|
cDebugStatus |
"0" |
The Debugger doesn't see system components. |
"1" |
The Debugger sees system components. |
Help says that setting SYS(2030) from the Command Window is meaningless. Our tests showed that that's as good a way as any (maybe even better) to set this one. |
Example |
nOld2030 = VAL(SYS(2030)) * Turn off debugging of components SYS(2030,0) DO (_Browser) * Restore old setting SYS(2030, nOld2030) |
See Also |
_Beautify, _Browser, _Builder, _CodeSense, _Converter, _Coverage, Debug, _Gallery, _GenGraph, _GenHTML, _GenMenu, _GenXTab, _ObjectBrowser, _SCCText, Set Coverage, Set Step, _TaskList, _Wizard |