Thursday, October 1, 2020

Sum, Product, and Divide in Visual Basic 6

  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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


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