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
Explain the differences between vb.net and c#, related to oops concepts?
Why is the xml infoset specification different from the xml dom?
List the types of authentication?
What is meant by jagged arrays?
What do you mean by serialization and deserialization and it's use.
Explain the difference between namespace and assembly?
What is late binding and early binding?
Describe about visual basic.net?
Explain the difference between vb.net and c#, related to oops concepts?
What is the difference between readonly variable and constant variable?
Explain the use of console application?
What are jagged arrays ?
What is the differnce between managed code and unmanaged code?
Is vb.net a programming language?
What are the differences between vb.net and c#, related to oops concepts