how to get sum of two numbers in vb.net?
Answer Posted / prashant
windows form application vb.net
Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click
Dim a As Integer
Dim b As Integer
Dim c As Integer
a = Convert.ToInt32(Me.TextBox3.Text)
b = Convert.ToInt32(Me.TextBox11.Text)
c = a * b
TextBox13.Text = c
End Sub
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you please explain the difference between value and reference types?
What are the types of generations in garbage collector?
Explain about the keyword must inherit?
What is strong name in .net assembly?
What would you do to remove microsoft visual basic name space?
Tell me how many .net languages can a single .net dll contain?
What is sorting in vb?
What is the use of errorprovider control?
Using VB, how can you change the Mouse Pointer?
Explain about the performance of visual basic?
What is the difference between static or dynamic assemblies?
what's ArrayList in .Net (VB.Net or C#).What's the advantageous using ArrayList.
Explain the difference between vb 6 and vb.net?
What is difference between inline and code behind?
Explain about globalization?