I have seen a method showInputDialog(...) for getting input in jdialog class, but I want that user input its data but show always * inplace of typed character, like JPasswordField class , is there any method in jdialog or any solution.
Brian Pipa
Ranch Hand
Joined: Sep 29, 2003
Posts: 299
posted
0
Use a JDialog and add a JPasswordField to it. Read the Javadocs for JDialog about how to add your own components (at the top of the Javadoc) brian