Hi,... The installation path need not be c:\... How do i find the installation path if it is in some other location?
N.Navaneethan
Hi,... The installation path need not be c:\... How do i find the installation path if it is in some other location?
N.Navaneethan
Hi.. How to invoke the xsd.exe thru code?.. And also How do u i know the location in which the visual studio is installed. Thanks in advance.
N.Navaneethan
;) 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