PDA

View Full Version : ML_ExpressionEvaluation.tbasic



DirectuX
31-10-2018, 20:50
Hi,

If I'm not mistaken you may want to change this in the ML_ExpressionEvaluation.tbasic sample


line 227 :
eval_setNumber( mid$(CHR$(ASC("A") TO ASC("Z")), i, 1)+FORMAT$(j), mlgrid_get(hGrid, i, j) )
to
eval_setNumber( mid$(CHR$(ASC("A") TO ASC("Z")), j, 1)+FORMAT$(i), mlgrid_get(hGrid, i, j) )


consequently :
line 80 :
mlgrid_put(hGrid, 3, 2, "=A2/B2")
to
mlgrid_put(hGrid, 3, 2, "=B1/B2")

ErosOlmi
01-11-2018, 14:00
Right you are!

Thanks for spotting that.
Changes source code for the next update.