Simple addition and displaying answer on another form - VB.NET -
i wish add figures entered textbox on 1 form , display answer on form. i.e. customersubmit form.
here code have far.
dim x, y integer x = cint(textbox14.text) y = cint(textbox10.text) customersubmit.textbox1 = x + y
thanks in advance
customersubmit.textbox1.text = x + y
Comments
Post a Comment