To sum the values in two text boxes to a third text box:
In Design mode, select the + button and choose Dashboard, then Scripts.
Add the parseInt() method around operand1.Text.
txt_result.Text=parseInt(operand1.Text)+operand2.Text
Add the parseInt() method around operand2.Text.
txt_result.Text=parseInt(operand1.Text)+parseInt(operand2.Text)
Click OK to save the script and close the Script Editor.
In Run mode, the sum of the numbers in operand1 and operand2 is displayed in txt_result after you click the + button.