Results 1 to 6 of 6
Thread: What is wrong with that code ?!
- 07-12-2011, 10:56 AM #1
What is wrong with that code ?!
is that the problem "missing symbol" ?
Java Code:private void txtPasswordActionPerformed(java.awt.event.ActionEvent evt) { String password = txtPassword.getText().trim(); int passwordLenght = password.lenght(); if( passwordLenght != 8 ) { JOptionPane.showMessageDialog(null, "your password must be 8 characters!.."); txtPassword.requestFocus(); } }Last edited by qwerty53; 07-12-2011 at 10:58 AM. Reason: bad grammar
- 07-12-2011, 11:25 AM #2
Could you post the full error message? It tells you what line the error occured on.
- Use [code][/code] tags when posting code. That way people don't want to stab their eyes out when trying to help you.
- +Rep people for helpful posts.
- 07-12-2011, 11:38 AM #3
Java Code:private void txtPasswordActionPerformed(java.awt.event.ActionEvent evt) { String password = txtPassword.getText().trim(); int passwordLenght = password.lenght(); /* the orror message is right here. and it says "cannot find symbol"/ if( passwordLenght != 8 ) { JOptionPane.showMessageDialog(null, "your password must be 8 characters!.."); txtPassword.requestFocus(); } }
- 07-12-2011, 12:00 PM #4
How do you spell length?
- Use [code][/code] tags when posting code. That way people don't want to stab their eyes out when trying to help you.
- +Rep people for helpful posts.
- 07-12-2011, 01:28 PM #5
i'm new in java and in english.. i have realized that 15 minutes ago.. thanks for help..
- 07-12-2011, 01:34 PM #6
Its alright, when it gives you an error that points out the line it is always a good thing to look at the code. Double check your spelling of things, because a simple letter swap-a-roo can really mess up your code.
- Use [code][/code] tags when posting code. That way people don't want to stab their eyes out when trying to help you.
- +Rep people for helpful posts.
Similar Threads
-
What is wrong with this code?
By Mythreadings in forum New To JavaReplies: 38Last Post: 11-19-2010, 12:43 AM -
What Could be Wrong with This code????
By Manfizy in forum New To JavaReplies: 9Last Post: 08-22-2010, 11:28 AM -
What is wrong with my code?!
By new2java2009 in forum New To JavaReplies: 2Last Post: 04-17-2010, 08:01 PM -
What is wrong with this code
By rosh72851 in forum New To JavaReplies: 13Last Post: 10-31-2008, 01:50 AM -
What's wrong with this code?
By Wizard wusa in forum New To JavaReplies: 14Last Post: 01-22-2008, 11:55 PM


1Likes
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks