Hi all,
I'm trying to recover from a bad crash of my HD, but something is just not working anymore on an old app written in FPW26A that uses GENSCRNX, 3DCTRL and 3D drivers. To summarize:
in a screen I have some textbox with a When 'Expression' snippet with
IsAdding OR IsEditing
These are two logical vars created as .F. in the screen code at the beginning, so they should be available at any time. Before that, at the very beginning, I have:
*:SCXDRV5 3DCTRL
*:SCXDRV6 3D
*:BOX3D 2
*:ALL3D
*:IGNOREBRACES
In Config.FPW, among other things, is:
_GENSCRN="GENSCRNX.PRG"
_GENMENU="GENMENUX.PRG"
_SCXDRV5="3DCTRL"
_SCXDRV5="3D.PRG"
MVCOUNT=512
All these PRG/APP are in the folder wher FoxPro is.
Now, when I make some mods on the screen and try to compile the project, I get:
"Error: IsAdding OR IsEditing. Unrecognizable command verb.". The error line is:
FUNCTION click_adfc
IF when_adfd(m.objen_adff)
RETURN valid_adfe()
ELSE
IsAdding OR IsEditing <-------------------------
ENDIF
Apparently something isn't generated properly.
My code is always been there. What setting did I screw up?
Thanks
I'm trying to recover from a bad crash of my HD, but something is just not working anymore on an old app written in FPW26A that uses GENSCRNX, 3DCTRL and 3D drivers. To summarize:
in a screen I have some textbox with a When 'Expression' snippet with
IsAdding OR IsEditing
These are two logical vars created as .F. in the screen code at the beginning, so they should be available at any time. Before that, at the very beginning, I have:
*:SCXDRV5 3DCTRL
*:SCXDRV6 3D
*:BOX3D 2
*:ALL3D
*:IGNOREBRACES
In Config.FPW, among other things, is:
_GENSCRN="GENSCRNX.PRG"
_GENMENU="GENMENUX.PRG"
_SCXDRV5="3DCTRL"
_SCXDRV5="3D.PRG"
MVCOUNT=512
All these PRG/APP are in the folder wher FoxPro is.
Now, when I make some mods on the screen and try to compile the project, I get:
"Error: IsAdding OR IsEditing. Unrecognizable command verb.". The error line is:
FUNCTION click_adfc
IF when_adfd(m.objen_adff)
RETURN valid_adfe()
ELSE
IsAdding OR IsEditing <-------------------------
ENDIF
Apparently something isn't generated properly.
My code is always been there. What setting did I screw up?
Thanks