Uploader Comments (QuackWare)
Top Comments
-
check it dude.
for example.
0.1 + 0.9
doesn't work :)
-
instead of: textBox1.Text = textBox1.Text + "1";
You can use 1 event click to all the numbers (1-9)
try the code below:
textBox1.Text += (sender as Button).Text;
Video Responses
All Comments (113)
-
when i'm done this in a couple minutes my co-workers will be impressed
-
thank you for this video. this was very helpful :))
-
Hey, the error message I get is System.Web.UI.WebControls.Text
Box' does not contain a definition for 'Tag I have followed your code to the letter. Any suggestions?
-
Question: When I'm at plus = true , I get error that plus is already in use. I searched, and the only other plus is the bool plus = false; . Any suggestions?
-
Guys I hope you know that anything you do in VisualANYTHING is NOT programming. If you want to do programming you have to learn the idea of everything you use (and by everything I mean EVERYTHING). This is as hard as drawing a picture with paint. This is not what programmers learn in university. Just for you to know...
-
any tips on remembering all the code???



Hello, this tutorial is really helpful, but I am using the vb2008 express edition and i can't do the + button, the bool feature doesnt exists. Any help please?
ivoivo001 1 year ago
@ivoivo001
Never really used vb.net but I do know for a fact that there is a bool data type in visual basic.
Something like this:
Dim isCool As Boolean = True
' If statement
If isCool Then MsgBox("Quackware is cool")
End If
Would be the simplest of examples.
QuackWare 1 year ago
hey what if i wanna add a sin ,cos, tan etc. to my calculator
and also want a textbox to be multiline upper line shows the expression and lower line shows current value that is inputtted.....
navjot1331 1 year ago
@navjot1331
For sin, cos, tan there are built in C# functions, Math.Sin() Math.Cos() Math.Tan()
For the multilines you would have to mess around with the textbox properties, I don't know how to do this off the top of my head.
QuackWare 1 year ago
I am trying to follow your tutorial, and im a noob even at basic coding. But i noticed that your formatting is very different. I am working around it but i am having to type different things to get the same result. Im stuck on bool, it says declaration expected under the error code. Any suggestions :s ? Sorry if that sounds confusing.
Joeyz1994 1 year ago
@Joeyz1994 If you send me your source code or an image of your source code with the error I can try and debug it and see what is wrong.
QuackWare 1 year ago