Results 1 to 4 of 4
Thread: Help with empty textfields!!!
- 12-13-2012, 07:30 PM #1
Member
- Join Date
- Dec 2012
- Posts
- 26
- Rep Power
- 0
Help with empty textfields!!!
Hi, i have login screen where the user i asked to enter his username and password. Now if these fields are 'blank' i want to output and error message, but it does not seem to work. Nothing happens!!
Here is my code: (NB. This is under my "Welcome" button...)
if(username.equals(""))
{
JOptionPane.showMessageDialog(null,"The Username cannot be left blank!");
}
else if(password.equals(""))
{
JOptionPane.showMessageDialog(null,"The Password cannot be left blank!");
}
else if((username.equals(""))&&(password.equals("")))
{
JOptionPane.showMessageDialog(null,"Please fill in the required fields!");
}
- 12-13-2012, 07:39 PM #2
Member
- Join Date
- Dec 2012
- Posts
- 7
- Rep Power
- 0
Re: Help with empty textfields!!!
Have you tryed to compare your string with a null value instead of ""?
- 12-13-2012, 07:43 PM #3
Member
- Join Date
- Dec 2012
- Posts
- 26
- Rep Power
- 0
Re: Help with empty textfields!!!
i got it thanks :) Here is my new refurbished code :D :
if((username.getText().equals("")&&(password.getTe xt().equals(""))))
{
JOptionPane.showMessageDialog(null,"Please fill in the required fields!");
}
else if(password.getText().equals(""))
{
JOptionPane.showMessageDialog(null,"The Password cannot be left blank!");
}
else if(username.getText().equals(""))
{
JOptionPane.showMessageDialog(null,"The Username cannot be left blank!");
}
- 12-13-2012, 07:49 PM #4
Member
- Join Date
- Dec 2012
- Posts
- 7
- Rep Power
- 0
Similar Threads
-
TextFields not showing up
By Army in forum New To JavaReplies: 7Last Post: 06-20-2012, 06:36 PM -
textfields - cursor
By newbie123 in forum AWT / SwingReplies: 6Last Post: 09-29-2011, 06:39 PM -
applet and textfields
By poajavaweb in forum Java AppletsReplies: 4Last Post: 01-28-2011, 08:56 PM -
adding textfields
By themanepalli in forum Java AppletsReplies: 1Last Post: 12-28-2010, 03:56 AM -
Buttons and TextFields
By Xystus777 in forum New To JavaReplies: 27Last Post: 03-17-2009, 01:26 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks