
Channel: DJ Oamen
Category: Education
Tags: how to create a maths app in visual basic.netcreate a maths app in visual basic.netmaths app in visual basic.nethow to create a maths apphow to create a maths app with audio and text to speech in visual basic.net
Description: How to Create a Maths Quiz App in Visual Basic.Net, in this video tutorial you will learn how to create a Form in Visual Basic.Net, call a Form from within another form. The tutorial also includes how to implement a For Loop, Randomly select an Arithmetic Operator, add Audio and convert Text to Speech. A very good tutorial for both beginners and advanced learners. Join this channel to get access to codes, and perks, and see more interesting videos. youtube.com/channel/UCFtw9CfTfMKU9aHZsT2teYg/join To support more videos from DJ Oamen, visit POamen Paypal paypal.me/POamen? For more interesting video tutorials, visit my second channel: youtube.com/c/PaulOamen/videos To Become a Channel member click on the link below to JOIN: youtube.com/channel/UCFtw9CfTfMKU9aHZsT2teYg/join Channel Members can Download the Maths App in Visual Basic.Net source code, and modify it for their own personal use. Plus one other source code per month. Total - 2 Source codes Per Month, only: drive.google.com/file/d/13copeJT5eYSJ5nCOw9qsPRtRZpuTjpja/view?usp=sharing See the Correction to Result Button Codes: Dim number1 As Integer = Convert.ToInt32(txtNumOne.Text) Dim number2 As Integer = Convert.ToInt32(txtNumTwo.Text) Dim answer, result As Integer AddValue = AddValue + 1 If (lblOperator.Text = "+") Then answer = number1 + number2 ElseIf (lblOperator.Text = "-") Then answer = number1 - number2 ElseIf (lblOperator.Text = "*") Then answer = number1 * number2 ElseIf (lblOperator.Text = "/") Then answer = number1 / number2 Else answer = 0 End If



















