I have a datagridview, and it has 4 columns
ID, Code, User Name, password
I have a configuration button that brings the form up that contains the datagridview, where I can ad a new user, how can I make for the password field to when I type it shows like "*********",
and how can I make the data under the "User Name to automatically upshift?
Thanks,
For your help
Loading
JUliusPosted Jun 9, 2008, 12:26 PM
Anna HawksPosted Jun 9, 2008, 10:44 AM
http://www.dotnet247.com/247reference/msgs/42/211900.aspx
textbox tb = textbox1;
tb.text.toupper();
textbox1.text = tb.text;