Bentcereal
November 4th, 2002, 08:17 PM
I am making a password applet but on the TextField where you type in the password it shows the letters how do you hide the letters shown changing them to the *. help please
|
Click to See Complete Forum and Search --> : Help With Applet Bentcereal November 4th, 2002, 08:17 PM I am making a password applet but on the TextField where you type in the password it shows the letters how do you hide the letters shown changing them to the *. help please Goodz13 November 4th, 2002, 08:53 PM javax.swing has a nice little JPasswordField you might want to try. If you didn't want to use swing, you could also do something like TextField password = new TextField(); password.setEchoChar('*'); codeguru.com
Copyright WebMediaBrands Inc., All Rights Reserved. |