No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
Re: import javax.swing.*; public class aaa{ public static void main(String[]args){ String username; int i; String password; int j; String[]uname={"geerthan"}; String[]pwd={"19881108"}; password.setEchoChar('*'); boolean loop=true; while(loop){ username=JOptionPane.showInputDialog("Enter the Username"); if(username.equals("")){ String message="Please Enter the Username"; JOptionPane.showMessageDialog(new JFrame(),message,"Warning",JOptionPane.WARNING_MESSAGE); } else { password=JOptionPane.showInputDialog("Enter the Password"); if(password.equals("")){ String message="Please Enter the Password"; JOptionPane.showMessageDialog(new JFrame(),message,"WARNING",JOptionPane.WARNING_MESSAGE); } else … |
The End.