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

Capture and play voice with Asterisk ARI -

c++ - Can not find the "fiostream.h" file -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -