NOEXITVALID problem
Posted: Wed Feb 20, 2019 6:13 am
Hi Roger!
I wanted to use the NOEXITVALID in DCGET, but it caused error.
I found in DCDIALOG.CH what caused it:
This line is wrong:Replaced with this, and everything working well:
Best regards,
Zoltan
I wanted to use the NOEXITVALID in DCGET, but it caused error.
I found in DCDIALOG.CH what caused it:
This line is wrong:
Code: Select all
#translate NOEXITVALID <cb> => VALID {|o,lExit|iif(!lExit,Eval(<cb>,o),TRUE)}
Code: Select all
#translate NOEXITVALID <cb> => VALID {|o,lExit|iif(!lExit,Eval(<cb>,o),.t.)}
Zoltan