H
Hareth
Scenerio:
label1.text = 0
textbox1.text = 0
textbox2.text = textbox1.text + label1.text
It turns out it isnt adding the numbers, it attaches the new number next to
the old number
if label1.text = 1 then textbox1 is = 2 then 1+2 = 3 ....it writes 1+2= 12
INSTEAD of 3
label1.text = 0
textbox1.text = 0
textbox2.text = textbox1.text + label1.text
It turns out it isnt adding the numbers, it attaches the new number next to
the old number
if label1.text = 1 then textbox1 is = 2 then 1+2 = 3 ....it writes 1+2= 12
INSTEAD of 3
