Click here to Skip to main content
15,914,221 members
Home / Discussions / C#
   

C#

 
GeneralRe: Open a form? Pin
Stefan Troschuetz6-Oct-06 3:41
Stefan Troschuetz6-Oct-06 3:41 
GeneralRe: Open a form? Pin
shabonaa6-Oct-06 4:12
shabonaa6-Oct-06 4:12 
GeneralRe: Open a form? Pin
Wolf926-Oct-06 5:27
Wolf926-Oct-06 5:27 
QuestionRequirement Pin
Parshant Verma6-Oct-06 2:39
Parshant Verma6-Oct-06 2:39 
AnswerRe: Requirement Pin
Stefan Troschuetz6-Oct-06 3:22
Stefan Troschuetz6-Oct-06 3:22 
Questionhow to run Pin
Parshant Verma6-Oct-06 2:38
Parshant Verma6-Oct-06 2:38 
AnswerRe: how to run Pin
Stefan Troschuetz6-Oct-06 3:18
Stefan Troschuetz6-Oct-06 3:18 
QuestionConvert VBA to C# Pin
Guytz6-Oct-06 1:44
Guytz6-Oct-06 1:44 
AnswerRe: Convert VBA to C# Pin
mikone6-Oct-06 2:15
mikone6-Oct-06 2:15 
GeneralRe: Convert VBA to C# Pin
Guytz6-Oct-06 3:57
Guytz6-Oct-06 3:57 
AnswerRe: Convert VBA to C# Pin
shabonaa6-Oct-06 2:15
shabonaa6-Oct-06 2:15 
GeneralRe: Convert VBA to C# Pin
Dan Neely6-Oct-06 2:40
Dan Neely6-Oct-06 2:40 
GeneralRe: Convert VBA to C# Pin
shabonaa6-Oct-06 4:02
shabonaa6-Oct-06 4:02 
GeneralRe: Convert VBA to C# Pin
Guytz6-Oct-06 4:00
Guytz6-Oct-06 4:00 
Questionwidth of a text (font specific) Pin
C-Scharbe6-Oct-06 1:12
C-Scharbe6-Oct-06 1:12 
AnswerRe: width of a text (font specific) Pin
Merlin Tintin6-Oct-06 1:17
Merlin Tintin6-Oct-06 1:17 
AnswerRe: width of a text (font specific) Pin
J4amieC6-Oct-06 1:17
J4amieC6-Oct-06 1:17 
Questionhow to write check value in textbox Pin
isis_preaw6-Oct-06 1:05
isis_preaw6-Oct-06 1:05 
AnswerRe: how to write check value in textbox Pin
isis_preaw6-Oct-06 1:07
isis_preaw6-Oct-06 1:07 
AnswerRe: how to write check value in textbox Pin
Christian Graus6-Oct-06 1:25
protectorChristian Graus6-Oct-06 1:25 
AnswerRe: how to write check value in textbox Pin
Private_Void6-Oct-06 8:56
Private_Void6-Oct-06 8:56 
I was not sure if you were asking this of a Web Form or a Win Form. I would use a custom validator control if it is a Web Form, but the below will work for both.

private void btnCheck_Click(object sender, EventArgs e)
{
bool Numeric = IsNumeric(txtNonNumeric);
}

private bool IsNumeric(string strText)
{
try
{
Convert.ToDouble(strText);
return true;
}
catch
{
return false;
}
}
QuestionIncrease the size of a label Pin
C-sharper 16-Oct-06 1:05
C-sharper 16-Oct-06 1:05 
AnswerRe: Increase the size of a label Pin
Christian Graus6-Oct-06 1:27
protectorChristian Graus6-Oct-06 1:27 
GeneralRe: Increase the size of a label Pin
C-sharper 16-Oct-06 1:40
C-sharper 16-Oct-06 1:40 
AnswerRe: Increase the size of a label Pin
Guffa6-Oct-06 1:45
Guffa6-Oct-06 1:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.