Status
Not open for further replies.

ServSilla

Banned
Banned
440
2009
15
0
Simple Calculator

glcQ0M.png


Info: This is a simple calculator that I made in Visual Basic Express Edition 2008. I coded it and edited the logo and everything. It can add, subtract, multiply, divide, exponent, a modulate.

Download: http://www.mediafire.com/?8d3d10ss4l1xysa

Virus Scan: http://www.virustotal.com/file-scan...7f55097ef6d29a3cb00d140e94b08f99af-1301015067

P.S You don't need to install it, you can just run it ;)

Enjoy!

Any Updates will be posted here and any suggestions will be helpful.
 
Last edited:
28 comments
for the guys who need source code

i assume if you are asking the source code of this application than you are even lower then a newbie

here is the easiest method to create a calculator


Code:
        If RadioButton1.Checked = True Then
            Label1.Text = Val(TextBox1.Text) + Val(TextBox2.Text)
        ElseIf RadioButton2.Checked = True Then
            Label1.Text = Val(TextBox1.Text) - Val(TextBox2.Text)
         ElseIf RadioButton3.Checked   etc............
End If
 
try to make simmilar to windows have ;) Numbers 0-9, clickable, and shit. +, -, *, /. That was what I made back to my fifteens...
 
A little exercise for you:
Make it use only one textarea rather than two.. (hint: use of evens on button click/radio button selection in ur case). (y)
 
Nice calculator, by the way, the source code u shared was it the full one or just part of it co at the end u wrote etc............... Thanks.

Regards - HexCoder
 
Hey evryone, can you guys please stop with the spamming of your calculators, we all know that MY calculator is the best!

@Everyone who wants the source code, please hold on, once i get on my own PC I'll post the source code for it. Please keep all copyright in the code if you wish to use it.
 
Status
Not open for further replies.
Back
Top