Visual Studio 2013 - VB - Calculator Tutorial

Published: 23 July 2014
on channel: Eyal Geulayev
72,832
406

Visual Studio 2013 - VB - Calculator Tutorial (open source)

Codes:

Every Number Button:
TextBox1.Text = TextBox1.Text & "x"

C: TextBox1.Clear()

Under Public Class:

Dim FirstNumber As Single
Dim SecondNumber AS Single
Dim AnswerNumber As Single
Dim ArithemeticProcess As String

+: FirstNumber = Val(TextBox1.Text)
TextBox1.Text = "0"
ArithemeticProcess = "+"

-: ""

x:""

/:""



=:
SecondNumber = Val(TextBox1.Text)
If ArithemeticProcess = "+" Then
AnswerNumber = FirstNumber + SecondNumber
End If

""-
""*
""/
TextBox1.Text = AnswerNumber


On this page of the site you can watch the video online Visual Studio 2013 - VB - Calculator Tutorial with a duration of hours minute second in good quality, which was uploaded by the user Eyal Geulayev 23 July 2014, share the link with friends and acquaintances, this video has already been watched 72,832 times on youtube and it was liked by 406 viewers. Enjoy your viewing!