Uploader Comments (QuackWare)
All Comments (51)
-
Thanks, this was really helpful and easier than what I did
-
Thank from in turkey student :)
-
MessageBox.Show("You've just made a better programmer from now on");
-
wonderful thanks a lot,
I had been trying to do the same thing before and had to work around it somehow, this is pretty simple method
-
Hi Quack I like and need the info but there are too many opps, form-flipping,etc and redos to follow. Any chance of you redoing the video?
-
I always get does not contain a constrictor that takes 0 arguments, then links me to Application.Rune(new form1());
Anyone got any help, it happened since I added code from this video :/
-
How can you make and keep the form size maximum during run time? Thanks for your video...
-
Your voice sounds very familiar what high school did you go to?
-
it just won't work :(



QUESTION : How can i check if in a textbox the text is numeric ( numbers only ) so example :
Button Click :
if (textbox1.text != Numeric)
{ MessageBox.Show("Error ~ Must Be Numeric","")
}
1Mihailo 1 year ago
You can use this code
try {
Int32.Parse(textbox1.Text);
//If it reaches this line then it must be an int because an exception has not been thrown
}
catch {
MessageBox.Show("Error ~ Must Be Numberic");
QuackWare 1 year ago