Added: 3 years ago
From: cuteboymimmi
Views: 63,516
Sort by time | Sort by thread (beta)

Link to this comment:

Share to:

All Comments (119)

Sign In or Sign Up now to post a comment!
  • send me the code please..

  • Nice calculator :) can you send me the code? please

  • where's the code ? .post please ;)

  • kids stuff...but man how u did the dot ?? my dot gets cleared ^^

  • @DnDTantofaz You're calling it kids stuff but you can't get a dot.

  • This Is Easy Way To make this Calculator But it Awsom.

    I am Currently Using Vb.net

  • tutorial al toque de habar empezado ? focus on your own, man !!

  • Im learning C# now and plan to start making tutorials

  • Comment removed

  • Howd you change the launch icon?

  • @novabuzzproduction easy :) right click the program go to properties and say change icon and pick a picture on your computer

  • hey can you do that in a only one textbox?? when i was on highschool i can do that in only one textbox.. and also my first computer program ever too. . .

  • Comment removed

  • This is very good mate :)

  • Cool

  • post the code

  • QUE MAL VIDEO ..... DONDE ESTA EL CODIGO O LA FORMA DE HACER

  • well done!

  • Good video, all you guys wanting to learn programming ect... I have started a new site be sure to come join earlier doors to liven the place up signing up is free so please do so :) Stay active share tutorials and become popular for the rite reasons...

    The site will be getting a domain very soon :) Like this to get people to join and help one another out :)

    Heres the current link :) - parttimeprogramming. iftopic. com

    Add the ([w]orld [w]ide [w]eb ) infront and don't leave the spaces :)

  • Make a download link !!

  • Lol the kid is so happy he made an calculator. hahahahahaa!!!!!

  • @stenyboy5 so what -.- its my first computer program ever!

  • @cuteboymimmi I dont think i can do ANY better than you!

  • @stenyboy5 Why would you make fun of him? Programming is difficult!

    @cuteboymimmi well done, I have to make one for school also, but I wanted to do it with only one textbox. This is so much simpeler!

  • @stenyboy5 you should be shot for making fun of a programmer... programmers are the elite in the computer world...

  • @lowsperm81 which explains why you are not and elite and unable to track me down LOL. Still a pathetic asshole lowiq66 ya gay fucking elevator fudgepacking queer. BOGART!!!!

  • @shaithis80 SHUT THE FUCK UP NIGGER.. YOU SHOULD BE THANKFUL THAT YOU'RE STILL BREATHING... YOUR DAY WILL COME.. YOUR PARENTS WILL FIND YOU IN A BODYBAG AND NO WHITEMAN IS GOING TO BOTHER ABOUT FINDING THE KILLER COZ ITS JUST A NIGGER..

    WE HATE NIGGERS..

  • @lowsperm81 seriously it took you a whole 3 weeks to come up with that tailored response. Man you have lost your touch. Hey I'm a big believer in karma as to what goes around comes around so I imagine it is only a matter of time for you. Don't mess around with slim unless you want a two piece custom made bullet lodged in your abdomen :) Do we understand each other? Nah you are just a dumbfuck with nothing better to do.

  • @shaithis80 fucking nigger with attitude. dont worry your time is near.. prepare for your death nigger... always remember that youre just a nigger in a white mans world. so you can jerk off to michael jackson's photos.

  • @lowsperm81 and the response time is shorter lowiq66 the gay fudgepacking queer homo

    BOGART!!!! C'mon is that the only English you know. What do you really know besides going on a computer and speaking illiterate jargon. Man your threats are pathetic because YOU CAN'T LOCATE ME. In the war of words there might be no winners but I'll always come out on top because I don't fear you however I wouldn't mind bashing your brains into that skull of yours and burning your rotting corpse on a stake.

  • @shaithis80 @lowsperm81 Please stop.

  • @cuteboymimmi first off you have a user like lowsperm81 which just can't stop with the racial comments. I'm just responding in my own defense. A simple way to stop the rhetoric is to block us both for leaving further comments on your site. It is not something most moderators don't do however kudos to you for blocking me and lowsperm81. That is probably the only way you will stop this and while you are at it might i suggest you remove both our comments from your post. Thanks.

  • @stenyboy5 at least he can spell correctly unlike you....

  • Good, I really like it !!!

  • wick! this is nonsense..

  • wick! this is nonsense..

  • This would look much better if you had, one textbox for the sum and another for anwser or use a label.

  • MAN YOU ARE THE......BBB!!! BEST!!!! :)

  • how can you make exponentiation?

  • Where's the code?

  • where is the download link?

  • @techguy19 i do it this way (you need 1 checkbox:D ) so button1 (the button that presses 1 ) : if checkbox1.checked = false then textbox1.text = textbox1.text + "1" else textbox2.text= textbox2.text + "1" the * button: (*radiobutton) radiobutton1.checked = true checkbox1.checked = true
  • Awesome

  • good job

  • oh!! and also what does the carrot (^) mean when coding?

  • hey how do u make it so that when u press the operator it switches from one textbox to the other? plzzzzzzzzzzzzzzzzzzz respond i really want to know!!!!!!!!!!!

  • @techguy19 code all the buttons so they check whether the operator label is empty. if its not empty the buttons should write on the textbox2

  • @cuteboymimmi oh and 1 last question do i need to type the code in every number?

  • @cuteboymimmi hi, thanks for showing us your project, i have aquestion ,,, when i click the button of some number it appears in the text box but when i click another buttoon the first number disappears and the number of the second button appears instead, how can i kep the first number, like for example when u click the Number 1 button then the Number 2 button and the text box shows 12

  • @fukyouallfukyouall assuming the textbox is called textbox1, the code should be: textbox1.text = (textbox1.text & [your number here])

  • @cuteboymimmi thank you so much , i already got it after watching some video here explaining it right after i watched ur video,,, still i'm very grateful to u for everything , thanks again :)

  • @cuteboymimmi You can also type: textbox1.Text += "[number]" That should work

  • @techguy19

    so what he's doin' , ou are tiping with button1 (the "1" button) and if you press the * button then 1/4 radiobuttons is checked (the radiobuttons are necessary for the result =D )

    and checks the checkbox if the checkbox is checked then hes not tiping in tetbox1 anymore , but in textbox2

  • @techguy19

    the result button:

    If RadioButton1.Checked = True Then TextBox3.Text = Val(TextBox1.Text) + Val(TextBox2.Text) If RadioButton2.Checked = True Then TextBox3.Text = Val(TextBox1.Text) - Val(TextBox2.Text) If RadioButton3.Checked = True Then TextBox3.Text = Val(TextBox1.Text) * Val(TextBox2.Text)If RadioButton4.Checked = True Then TextBox3.Text = Val(TextBox1.Text) / Val(TextBox2.Text)

    so the buttons actually have no function ;)x

  • @techguy19 if label1.text = "" then textbox1.text = textbox1.text & "1" end if if label1.text = "+" then textbox2.text = textbox2.text & "1" end if if label1.text = "-" then textbox2.text = textbox2.text & "1" end if if label1.text = "% or what u use for type" then textbox2.text = textbox2.text & "1" end if if label1.text = "+" then textbox2.text = textbox2.text & "1" end if if label1.text = "*" then textbox2.text = textbox2.text & "1" end if
  • Tutorial

  • Not this EXACT code but they work the same

  • Does anybody want the c0de?

  • Can I have Source Code?

  • Source Code?

  • how vdid you change the icon of the exe file?

  • @tomixtomi12 Go to the program properties and click browse at the icon slection part of the properties tab. To get the proerties tab up, click (programs name) Properties, in the solution explorer, or click the properties menustrip item, and go to project properties.

  • @tomixtomi12 No worries :)

  • can download ?

  • cant download !

  • @cuteboymimmi I made one like this in less the two minutes... IM trying to find an advanced one.

  • Nice job. GUI could have been better

  • where did u get the icons?

  • @vancar6 iconfinder {dot} net

  • @cuteboymimmi

    THANKS!

    MY APPS LOOK AUTHENTIC NOW!

    THANK U

  • Hey man...I'm building a calculator for a project at the moment but am stuck with the coding the memory part (MS, MR, M+, M-)

    would ya be able to help out in the coding?

  • make a textbox outside the window and use that as the memory!

  • @cuteboymimmi that is really primitive why don't you just make a variable maybe even a setting in my settings?

  • @coolguyflex Yeah but I was a complete noon when I made this! It was my first app! Now I use all those stuff

  • @jbarron17071 depends on what kind of coding your using. but this is the code i used for "M+": txtmemory.Text = lbldisplay.Text. lbldisplay because that is the name of my answer label. hope this helped!

  • how did you save it as a exe or how did you get your exe to work on you computer

  • watch this watch?v=EDloMl90W5Q

  • goto your projects filder ->project name -> bin -> debug there you will find your exe

  • when your done with your project like this calculator or what you have made go to save and save as (name).exe and save it to your desktop

    like: Filename: Calculator.exe File export / folder / File save destination: Desktop

  • nice, how did you make the buttons so it would write into the text box?

  • Like i tried. and everytime i click another button it goes from "1" to "2" not "12"

  • Say, The code would be, if I want to add an "a" & a "b" I would do,

    Text1.Text = (Text1.Text) + "a"

    '(Change a to whatever you want)

  • that would be for VB6 the code I posted

  • Comment removed

  • Lol,and what about:

    TextBox.Text = TextBox.Text & "1"

  • You make that sound like im dumb... I just started VB a few minutes before that post. And Calculators are the first to attempt in all programming languages for me

  • Xdisp.Text = Xdisp.Text & "1"

    this line is for button 1

    Xdisp is the name of my Text box

  • hoq you save your programe?

  • you should make a v 3.0 and fix the textbox3

    make it read only so it turns grey.

  • Why should he make it ReadOnly when he can just make it a label?

  • good job i thing:p

  • windows calculator can do 3 + 4 + 5 + 7 * 9 all in one go. yours can get as far as 3 + 4 in one go

  • Thats why the M+ button is there for!

  • well isn't microsoft's calculator better? try to do 3 + 5 + 4 on your calculator, oh wait theres only two digits, nvm.

  • umm... windows calculator can do 1 calculaton at a time!

  • zombie: but it is more fun making your own. You have all the rights to it and everything in the code. It gives you a sense of having something that will help others out.

  • true but than that wouldn't be as much fun would it.

  • hey...can you put a video tutorial on youtube?

  • hey, i just wonderd if you cod make an tutortial abot how to make cpu meeters in % form, i have look on internet but don´t find any good answers

  • type / instead of %

  • Vista makes this calculator look very sexy ;)

  • um.... 2.08 + 6.02 IS 8.1

    2.8+6.2 = 9

    you should learn some maths before criticising a calculator

  • oh, sorry -.-

    2.08 + 6.02 = 8.1 ^^

  • Cool! You can send me the tutorial. I rated and subscribed!

  • very cool

  • Oh it realy rock, make a tut like u said :)

  • nice calculator, can I get a tut?

  • Can you share with us the code?

  • where is the tutorial?

  • make a tutorial!!!No use for showing

  • gj pretty cool

  • cool

  • nice ;O

Loading...
Alert icon
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more