Click here to Skip to main content
15,892,161 members
Home / Discussions / C#
   

C#

 
AnswerRe: DataGridView validation Pin
sundeeppatil10-Apr-07 11:18
sundeeppatil10-Apr-07 11:18 
QuestionHelp regarding password char in textbox Pin
anu8110-Apr-07 3:56
anu8110-Apr-07 3:56 
AnswerRe: Help regarding password char in textbox Pin
gauthee10-Apr-07 4:05
gauthee10-Apr-07 4:05 
GeneralRe: Help regarding password char in textbox Pin
anu8110-Apr-07 4:14
anu8110-Apr-07 4:14 
GeneralRe: Help regarding password char in textbox Pin
althamda10-Apr-07 5:13
althamda10-Apr-07 5:13 
GeneralRe: Help regarding password char in textbox Pin
anu8110-Apr-07 19:03
anu8110-Apr-07 19:03 
GeneralRe: Help regarding password char in textbox Pin
gauthee10-Apr-07 18:36
gauthee10-Apr-07 18:36 
AnswerRe: Help regarding password char in textbox Pin
nikanth10-Apr-07 4:25
nikanth10-Apr-07 4:25 
Wink | ;) Its just a trick...

1) Have a 2 textboxes which stores the password, one is masked and other unmasked at the same location having the same top,left,height and width.

At an instance depending upon the checkbox value, only one textbox is visible
if(checkbox checked true)
{
textboxMasked.Visibility = false;
textboxUnmasked.Visibility = true;
textboxUnMasked.Text = textboxMasked.Text
}
else
{
textboxMasked.Visibility = true;
textboxUnmasked.Visibility = false;
textboxMasked.Text = textboxunMasked.Text
}

In the check box unchecked event,do the above

Hope this solve ur issue...
please reply back if it solved ur requirement

N.Navaneethan

QuestionTruncate decimal place Pin
polishprogrammer10-Apr-07 3:36
polishprogrammer10-Apr-07 3:36 
AnswerRe: Truncate decimal place Pin
gauthee10-Apr-07 3:48
gauthee10-Apr-07 3:48 
AnswerRe: Truncate decimal place Pin
Martin#10-Apr-07 3:59
Martin#10-Apr-07 3:59 
AnswerRe: Truncate decimal place Pin
Not Active10-Apr-07 4:31
mentorNot Active10-Apr-07 4:31 
AnswerRe: Truncate decimal place Pin
althamda10-Apr-07 6:00
althamda10-Apr-07 6:00 
AnswerRe: Truncate decimal place Pin
mabo4211-Apr-07 0:05
mabo4211-Apr-07 0:05 
QuestionConverting bmp to pcx files Pin
Romashka_NN10-Apr-07 3:20
Romashka_NN10-Apr-07 3:20 
Questionwhere is create Class Diagram option?? Pin
Saira Tanwir10-Apr-07 2:50
Saira Tanwir10-Apr-07 2:50 
AnswerRe: where is create Class Diagram option?? Pin
Colin Angus Mackay10-Apr-07 3:03
Colin Angus Mackay10-Apr-07 3:03 
AnswerRe: where is create Class Diagram option?? Pin
Pete O'Hanlon10-Apr-07 3:14
mvePete O'Hanlon10-Apr-07 3:14 
AnswerRe: where is create Class Diagram option?? Pin
Sathesh Sakthivel10-Apr-07 3:17
Sathesh Sakthivel10-Apr-07 3:17 
GeneralRe: where is create Class Diagram option?? Pin
Colin Angus Mackay10-Apr-07 3:33
Colin Angus Mackay10-Apr-07 3:33 
Questionmake program work as monitor to store each word and text ? Pin
Ahmed R El Bohoty10-Apr-07 2:32
Ahmed R El Bohoty10-Apr-07 2:32 
AnswerRe: make program work as monitor to store each word and text ? Pin
Colin Angus Mackay10-Apr-07 3:05
Colin Angus Mackay10-Apr-07 3:05 
AnswerRe: make program work as monitor to store each word and text ? Pin
Ahmed R El Bohoty10-Apr-07 6:12
Ahmed R El Bohoty10-Apr-07 6:12 
AnswerRe: make program work as monitor to store each word and text ? Pin
Pete O'Hanlon10-Apr-07 3:17
mvePete O'Hanlon10-Apr-07 3:17 
GeneralRe: make program work as monitor to store each word and text ? Pin
Colin Angus Mackay10-Apr-07 3:35
Colin Angus Mackay10-Apr-07 3: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.