On 2018-06-25 11:41, Fernando D. Bozzo wrote:
You may convert frmEditJob.scx to text with FoxBin2Prg and search there.
Because the error says "ALIAS IS NO FOUND" you should look closely at all data statements, like "SELECT <alias>" or "<alias>.<field>" and macros/vars too, in the case you don't use real Alias names and use substituted alias names.
By the picture one can infere that you don't have an error procedure. In this case, even a basic error handling like this may help:
ON ERROR MESSAGEBOX(TEXTMERGE("Error <<ERROR()>>, <<MESSAGE()>>"+CHR(13)+"Proc.<<PROCEDURE()>>, line <<LINE()>>"))
It's better than the VFP default error handler.
Oh I do have an error handler....I disabled it trying to track down this bug. :-)