I will show you how to write a program using Visual Basic 6 application that will ask the user
to give two integer values and then the program will compute the sum, product, and divide values of the two numbers given by the user.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
Program Listing
Private Sub Command1_Click()
a = Val(Text1.Text)
b = Val(Text2.Text)
Text3.Text = (a + b)
Text4.Text = (a * b)
Text5.Text = (a / b)
End Sub
Private Sub Command2_Click()
End
End Sub
No comments:
Post a Comment