Delphi XE4
Is there an example for TCalcEdit?
I need to get the result of an TCalcEdit on exit them.
For example:
the text in my TCalEdit is '5990'
Now i type '3+13' into the CalcEdit.
On exit i get for 'myResult := CalcEdit.FormulaResult' the old value '5990', but i want to have '16'
What do i wrong.
Please give me a little help. Thank you
Problem was that OnExit is triggered before the calculation is done.
We have fixed this. Calculation is done now internally first and next update will address this.