I have a program where a certain section of code will need to change frequently. The code includes CASE statements and could not be run on a line-by-line method using macro statements stored in a table's field. I figured I could store the code in a memo field and execute it. However, I'm unsure how to do this when running from a compiled .EXE.
I have seen this sample code:
copy memo DoIt to MyTemp.Prg
comp MyTemp.prg
do MyTemp
However, I don't believe this will work from a compiled project (.EXE). At least, I'm getting a "Feature Not Available" error.
Any idea?
TIA
I have seen this sample code:
copy memo DoIt to MyTemp.Prg
comp MyTemp.prg
do MyTemp
However, I don't believe this will work from a compiled project (.EXE). At least, I'm getting a "Feature Not Available" error.
Any idea?
TIA