FoxPro table didn't open in X# FoxPro Console
Posted: Sun Nov 24, 2019 1:30 am
Still looking for Project Options...
Chris wrote:Hi Matt,
You just need to enable the options "Enable Memvar Support" and "Enable Undeclared variables support" (in the Language page of the Project options) and then the compiler will allow using it also undeclared. It will still report a warning though, just in case you did that accidentally in code, so make sure you do not have "warnings as errors" also enabled, because this will turn the warning into an error.FoxProMatt_MattSlay wrote:Use
Just like you do for LOCALCode: Select all
FIELD LastName
This is because the X# compiler requires everything referred to in your code to be identified.
You can turn this off with a compiler option if you want to use non-declared variables.