Click here to Skip to main content
15,899,679 members
Home / Discussions / C#
   

C#

 
GeneralRe: Filecopy in windows service and win application Pin
amitcoder8314-Nov-07 0:44
amitcoder8314-Nov-07 0:44 
AnswerRe: Filecopy in windows service and win application Pin
Vikram A Punathambekar14-Nov-07 1:05
Vikram A Punathambekar14-Nov-07 1:05 
GeneralRe: Filecopy in windows service and win application Pin
amitcoder8314-Nov-07 1:53
amitcoder8314-Nov-07 1:53 
QuestionI want to enter only Negative values,Positive values,Decimal values in TextBox Pin
g_hemanth1714-Nov-07 0:01
g_hemanth1714-Nov-07 0:01 
AnswerRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
Christian Graus14-Nov-07 0:12
protectorChristian Graus14-Nov-07 0:12 
AnswerRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
Xmen Real 14-Nov-07 0:26
professional Xmen Real 14-Nov-07 0:26 
GeneralRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
g_hemanth1714-Nov-07 0:49
g_hemanth1714-Nov-07 0:49 
GeneralRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
Sri_346414-Nov-07 0:54
Sri_346414-Nov-07 0:54 
Use the code below.
Pass the textbox.Text to this method from the validating or validated or leave event of the textbox

public bool IsNumeric(object expression)
{
double retNum;
return Double.TryParse(Convert.ToString(expression), System.Globalization.NumberStyles.Integer,System.Globalization.NumberFormatInfo.InvariantInfo,out retNum );
}

Thanks,
Srikanth

GeneralRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
g_hemanth1714-Nov-07 1:19
g_hemanth1714-Nov-07 1:19 
GeneralRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
Xmen Real 14-Nov-07 1:38
professional Xmen Real 14-Nov-07 1:38 
AnswerRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
shaz jazz14-Nov-07 2:35
shaz jazz14-Nov-07 2:35 
GeneralRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
g_hemanth1714-Nov-07 3:36
g_hemanth1714-Nov-07 3:36 
GeneralRe: I want to enter only Negative values,Positive values,Decimal values in TextBox Pin
g_hemanth1714-Nov-07 5:20
g_hemanth1714-Nov-07 5:20 
QuestionGridview Header column Pin
kishoregani13-Nov-07 23:59
kishoregani13-Nov-07 23:59 
AnswerRe: Gridview Header column Pin
KennyPatel14-Nov-07 1:34
KennyPatel14-Nov-07 1:34 
QuestionNeed to use Microsoft.Office.Interop namespace Pin
Sri_346413-Nov-07 23:51
Sri_346413-Nov-07 23:51 
AnswerRe: Need to use Microsoft.Office.Interop namespace Pin
Christian Graus14-Nov-07 0:13
protectorChristian Graus14-Nov-07 0:13 
GeneralRe: Need to use Microsoft.Office.Interop namespace Pin
Sri_346414-Nov-07 0:48
Sri_346414-Nov-07 0:48 
JokeRe: Need to use Microsoft.Office.Interop namespace Pin
Vasudevan Deepak Kumar14-Nov-07 1:09
Vasudevan Deepak Kumar14-Nov-07 1:09 
GeneralRe: Need to use Microsoft.Office.Interop namespace Pin
Sri_346414-Nov-07 1:28
Sri_346414-Nov-07 1:28 
QuestionHow to Start Service (Windows Service In CSharp) Pin
Boroumandan13-Nov-07 23:50
Boroumandan13-Nov-07 23:50 
AnswerRe: How to Start Service (Windows Service In CSharp) Pin
Abhijit Jana14-Nov-07 0:15
professionalAbhijit Jana14-Nov-07 0:15 
QuestionFiltering non numeric charactors Pin
Charith Jayasundara13-Nov-07 23:49
Charith Jayasundara13-Nov-07 23:49 
AnswerRe: Filtering non numeric charactors Pin
Christian Graus14-Nov-07 0:14
protectorChristian Graus14-Nov-07 0:14 
QuestionTo define first clicked button’s...., and second clicked button’s ...., to compare. Pin
omegazafer13-Nov-07 23:36
omegazafer13-Nov-07 23:36 

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.