pantufa7
Tech Compliance Specialist
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
500 XP
As some of you know , in C# , there is no method like "IsNumeric()" . That's why , this method below helps you to prevent entering letters in the textbox or something like that.Hope to use this code in your applications.I used this code in my sms application sending from USB modem
string myval= textBox1.Text;
int Num;
bool isNum = int.TryParse(myval.ToString(), out Num);
if (isNum)
{
}
else
{
textBox1.Text = "";
}
if you have any question about code , u are able to reach me.
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Download
string myval= textBox1.Text;
int Num;
bool isNum = int.TryParse(myval.ToString(), out Num);
if (isNum)
{
}
else
{
textBox1.Text = "";
}
if you have any question about code , u are able to reach me.
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Download
You must upgrade your account or reply in the thread to view the hidden content.