Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP7 - disabling Intellisense ??

Status
Not open for further replies.

esiprog

Programmer
Joined
Oct 25, 2001
Messages
1
Location
CA
In Visual FoxPro 7.0, you can disable the interactive IntelliSense feature when you start VFP, but this setting is only for that session. I find this feature a pain and would like to find if there is a saved configuration setting that permanently disables it. I have looked into the registry but couldn't find anything there. Any ideas?
 
One way is to set the system variable _foxcode to "" in your CONFIG.FPW's _startup .PRG code.

i.e.
In CONFIG.FPW:
_startup=c:\VFP70\VFPSTART.PRG

In c:\VFP70\VFPSTART.PRG
_foxcode = ""

I usually change the _screen.BackColor, alter the VFP menu, and fire up some "helper" code in my VFPSTART.PRG

Rick

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top