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
What are nested classes?
Explain some of the exclusive features which are present in vb?
What is visual basic.net culture?
What is the strong name in .net assembly?
How to achieve Polymorphism in VB.Net?
Name some of the features present in vb 2005?
Explain about delegate?
What keyword is used to accept a variable number of parameter in a method?
Explain how to send xml file on server using http protocol?
What is non_deterministic finalization?
Write a VB.Net console program to check whether a number is perfect or not.
What is normal jit?
Explain how to achieve polymorphism in vb.net?
What is the difference between manifest and metadata?
source code for how to login a vb.net application ?