2
I have a form
with three TextBoxes
where the user will enter any value
and a Label
where I want to show the result of the sum of these values.
However, I would like to add up the contents of these TextBoxes
without having to click a button. I mean, as long as I’m filling in the TextBoxes
, the values are being added up and the sum is shown in the Label
.
you have done the routine that performs the calculation? you can call it in the output of the last textbox, in the event
onExit()
or similiar.– rray
This way it would perform the routine after the user click off txtbox?
– Floyd Diestl
Textchanged() is also a good idea... but think that if the text is null, without text, when turning to integer, it will give an error, then initially it is recommended.
– Danilo Breda
This is all set, if it is equal to null it considers 0 . then this textchanged method will execute qnd it click off ?
– Floyd Diestl