Click here to Skip to main content
15,891,423 members
Home / Discussions / C#
   

C#

 
GeneralRe: Changing the text of label Pin
Dave Kreskowiak3-May-07 13:33
mveDave Kreskowiak3-May-07 13:33 
GeneralRe: Changing the text of label Pin
Dave Kreskowiak3-May-07 3:48
mveDave Kreskowiak3-May-07 3:48 
GeneralRe: Changing the text of label Pin
sujithkumarsl3-May-07 8:42
sujithkumarsl3-May-07 8:42 
QuestionHow to get control of selected component. Pin
suveenmohan2-May-07 22:48
suveenmohan2-May-07 22:48 
AnswerRe: How to get control of selected component. Pin
Arun.Immanuel2-May-07 23:22
Arun.Immanuel2-May-07 23:22 
GeneralRe: How to get control of selected component. Pin
suveenmohan2-May-07 23:28
suveenmohan2-May-07 23:28 
GeneralRe: How to get control of selected component. Pin
Arun.Immanuel3-May-07 0:21
Arun.Immanuel3-May-07 0:21 
AnswerRe: How to get control of selected component. Pin
AFSEKI7-May-07 5:36
AFSEKI7-May-07 5:36 
1) Don't check string.IsNullOrEmoty condition "if it is not necessary (acceptable for values which may be left empty)" which is "I think" true for your TextBox1 with Default cursor

OR

2) Don't set default cursor on your TextBox1 when the parent Form is activated (Shown, Selected...)

OR

3) update a text changed flag to true in TextBox.TextChanged event and use:

if(_boolTextChanged == true)
{
Validate(); // write your validation code here
}
else
{
return; // The user hasn't done anything, why make him/her crazy, DON'T validate anything!!!
}

4) I prefer validating everything in one function when the user is finished with all modifications and presses for example the Submit Button which does not break down the nerve system of the user hearing a BEEP sound or ToolTip warning if the validation fails for the control he/she is currently modifying.
QuestionCulture and ResourceBundle Questions Pin
Ollie19862-May-07 22:39
Ollie19862-May-07 22:39 
QuestionFinding Info about a dll using Reflection Pin
SatyaDY2-May-07 22:00
SatyaDY2-May-07 22:00 
AnswerRe: Finding Info about a dll using Reflection Pin
Vikram A Punathambekar2-May-07 22:05
Vikram A Punathambekar2-May-07 22:05 
GeneralRe: Finding Info about a dll using Reflection Pin
SatyaDY2-May-07 22:12
SatyaDY2-May-07 22:12 
GeneralRe: Finding Info about a dll using Reflection Pin
Pete O'Hanlon2-May-07 22:24
mvePete O'Hanlon2-May-07 22:24 
GeneralRe: Finding Info about a dll using Reflection Pin
SatyaDY2-May-07 22:32
SatyaDY2-May-07 22:32 
GeneralRe: Finding Info about a dll using Reflection Pin
Pete O'Hanlon3-May-07 0:29
mvePete O'Hanlon3-May-07 0:29 
GeneralRe: Finding Info about a dll using Reflection Pin
SatyaDY3-May-07 1:19
SatyaDY3-May-07 1:19 
GeneralRe: Finding Info about a dll using Reflection Pin
Pete O'Hanlon3-May-07 3:00
mvePete O'Hanlon3-May-07 3:00 
GeneralRe: Finding Info about a dll using Reflection Pin
Vikram A Punathambekar2-May-07 22:35
Vikram A Punathambekar2-May-07 22:35 
AnswerRe: Finding Info about a dll using Reflection Pin
AFSEKI7-May-07 5:38
AFSEKI7-May-07 5:38 
QuestionConditional Directives Pin
Dewald2-May-07 21:49
Dewald2-May-07 21:49 
AnswerRe: Conditional Directives Pin
Luc Pattyn3-May-07 1:16
sitebuilderLuc Pattyn3-May-07 1:16 
Questionhow to parse the file into xml Pin
DON3452-May-07 21:03
DON3452-May-07 21:03 
AnswerRe: how to parse the file into xml Pin
Sandeep Akhare2-May-07 21:27
Sandeep Akhare2-May-07 21:27 
GeneralRe: how to parse the file into xml Pin
DON3452-May-07 21:30
DON3452-May-07 21:30 
GeneralRe: how to parse the file into xml Pin
Sandeep Akhare2-May-07 21:35
Sandeep Akhare2-May-07 21:35 

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.