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

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -