_CodeSense, _FoxCode
These system variables, added in VFP 7, specify the locations of the IntelliSense Manager application and the IntelliSense table, respectively.
Usage |
_CODESENSE = cIntelliSenseManager cIntelliSenseManager = _CODESENSE _FOXCODE = cIntelliSenseTable cIntelliSenseTable = _FOXCODE |
Parameter |
Value |
Meaning |
cIntelliSenseManager |
Character |
The filename, including path, of the IntelliSense Manager application. By default, HOME() + "FoxCode.APP". |
cIntelliSenseTable |
Character |
The filename, including path, of the table containing IntelliSense data. By default, "FoxCode.DBF" in the Visual FoxPro subdirectory of the user's profile directory. (In Windows 2000, "C:\Documents and Settings\<user name>\Application Data\Microsoft\Visual FoxPro".) |
DO (_CODESENSE)To replace the FoxCode table with one of your own devising, you need to create the new table first, and it must contain at least one record—a version record. The best way to do this is to copy the current FoxCode table, and then get rid of what you don't want. Setting _FOXCODE to the empty string turns off IntelliSense entirely.See "IntelliSense and Sensibility" in Section 5 for much more on IntelliSense.
Example |
_CODESENSE = "MyIntelliSenseManager.APP" _FOXCODE = HOME() + "MyFoxCode.DBF" |
See Also |