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 use of serialization and deserialization?
Explain the difference between c# and vb.net?
What is the difference between static or dynamic assemblies?
What are the advantages of VB.NET?
Explain convert.tostring and i.tostring method?
Define naming convention?
Explain convert.tostrin?
When do you use virutal keyword?
Tell me how many .net languages can a single .net dll contain?
Is it necessary to have SQL server installed in your computer in order to create a service based database in vb.net?
Explain how does the xmlserializer work?
What are the differences between server-side and client-side code?
What is visual basic.net culture?
Explain how the .net framework performs automatic memory management.
Which classes a dll can contain?