how to get sum of two numbers in vb.net?
Answers were Sorted based on User's Feedback
Answer / rinkymishra
dim x,y,z as integer
x=(textbox1.text)
y=(textbox2.text)
z=x+y
textbox3.text=z
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / 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 |
Answer / philip mahama
You need to create a new project and add two text-box, the first textbox, one label
Which name should be changed to sumlabel and a button for the calculation
Then double click on the button and add this code.
Dim num1, num2, sum as double
‘ Initialize sum to zero
Sum = 0
num1=double.parse(Textbox1.text)
num2=double.parse(Textbox2.text)
‘Calculate sum
Sum = num1 + num2
‘Print sum
Sumlabel.text = sum
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / aman
Sub Main()
Dim x, y As Integer
Console.Write("Enter value of x: ")
x = Console.ReadLine()
Console.Write("Enter value of y: ")
y = Console.ReadLine()
Console.Write("Sum x+y = ")
Console.WriteLine(x + y)
Console.ReadLine()
End Sub
| Is This Answer Correct ? | 5 Yes | 8 No |
What are the differences between server-side and client-side code?
What are the objects in asp.net and tell the purpose of those objects
Explain some of the exclusive features which are present in vb?
if user enters 1 or 2 or any other number in digit format in next textbox it should show the answer in word reading like if enters 12 answer should be twelve
what do you mean by .Net Framework
17 Answers Assurgent, College School Exams Tests, Guru Tech, Krishna Infotech, Ksb, Microsoft,
What is the use of console application?
What is the difference between Namespace and Assembly?
What is public assembly?
What is enumerator?
what is commom language runtime?
How to Insert a TextBox value in to Sql database using VB.Net coding?
Explain the components of common language runtime.
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)