Im righting a program and i have a button that when i push, i want it to check the value's of a couple of boxes then store the values in a notpad document. but i cant figure out how to check if the values are integer value, without using a bunch of or's and if's. there is an easy way right? can someone assist me please? =)thank you
what gui framework are you using? most of them have a way to specify the input type a textbox can accept so you could always use that type of functionality to limit it do numerical input. Otherwise you just loop through the elements of the string you got from the textbox and use isdigit() on it.
im using VS 2010's windows forms application. I couldnt find a property to specify the input type. I might have missed it. i think ill try the isdigit() method.