+ Calculator

Runescape™

Member
Reputation
0
:blush:

4.gif
 
yea nice mate i like it!! you goanna be giving away or cant u? sinec i would use it alot
 
What did you use to make this?
 
Code:
Dim intNumber1, intNumber2, intResult As Integer
intNumber1 = Integer.Parse(textbox1.text)
intNumber2 = Integer.Parse(textbox2.text)

intResult = intNumber1 + intNumber2

Label4.text = intResult.ToString

Oh damn I just guess'd your awesome code :p Well you have to start somewhere. ^^
 
iPK said:
Code:
Dim intNumber1, intNumber2, intResult As Integer
intNumber1 = Integer.Parse(textbox1.text)
intNumber2 = Integer.Parse(textbox2.text)

intResult = intNumber1 + intNumber2

Label4.text = intResult.ToString

Oh damn I just guess'd your awesome code :p Well you have to start somewhere. ^^

How? :shocked:

It took me hours! :happy2:
 
Runescape™ said:
How? :shocked:

It took me hours! :happy2:

Your trolling.

This is how simple the code is.
Code:
TextBox1.Text + TextBox2.Text = Label1.Text

That is literally how simple the code can be.
 
Thats quite cute, lol you should keep making things like this its a good past time :) I have thousands of dinky things like this in my VB folders hehe
~Blaze.
 
iPK said:
Code:
Dim intNumber1, intNumber2, intResult As Integer
intNumber1 = Integer.Parse(textbox1.text)
intNumber2 = Integer.Parse(textbox2.text)

intResult = intNumber1 + intNumber2

Label4.text = intResult.ToString

Oh damn I just guess'd your awesome code :p Well you have to start somewhere. ^^

Wouldn't it just be easier to make:
Code:
Label1.Text = TextBox1.Text  + TextBox2.Text
Lol.

Anyways, nice calculator, why don't you make it so it can also multiply, divide, and subtract? :p
 
haha im learning java aswell right now :) i made a clock xD
 
Offtopic, but how did you make the image? I know it's a .gif, but I've never looked at all into how to record it/make it that smooth.
 
Cubs said:
Offtopic, but how did you make the image? I know it's a .gif, but I've never looked at all into how to record it/make it that smooth.

I recorded it with Camtasia Screen recorder then rendered it as a .gif in Camtasia Studio :) You can get all the software free somewhere I think. Or you can pay.
 
Runescape™ said:
I recorded it with Camtasia Screen recorder then rendered it as a .gif in Camtasia Studio :) You can get all the software free somewhere I think. Or you can pay.

I also needed that. I am going to get Camtasia software in a little bit. I will probably grab cracked paid versions.
 
¥Demondax¥ said:
I also needed that. I am going to get Camtasia software in a little bit. I will probably grab cracked paid versions.

Exactly :laugh:
 
Back
Top