The most intelligent Java IDE
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Swing / AWT / SWT / JFace
 
RSS feed
 
New topic
Author

Compare Two Text fields in Swing

Mark Kafe
Ranch Hand

Joined: Jun 23, 2008
Messages: 53

Hey,
I m new in swing first time working on swing,
i want to make a simple application for accounting, and my problem is that i checked

Debit and Credit entries.........means one time user enter debit or credit..........i have no idea which action i use for this
And how to compare it which field is filled and which is empty?.

please help me on this.

This message was edited 1 time. Last update was at by Mark Kafe

Maneesh Godbole
Bartender

Joined: Jul 26, 2007
Messages: 4196

More details please.
What is ine time user enter debit or credit Does it mean the user can enter the amount only once?

JTextField#getText gives you the text inside that component. You can use it to perform your checks.

work is the scourge of the drinking class
Mark Kafe
Ranch Hand

Joined: Jun 23, 2008
Messages: 53

yes sir you are right user enter one amount only one time Debit or Credit.


i want if user enter Debit and not able to enter Credit, if try to enter credit show message....its not valid only one entry at one time Debit or Credit...
Maneesh Godbole
Bartender

Joined: Jul 26, 2007
Messages: 4196

Mark,
Easy on the "sir". We are all informal here

One way to do it is using a DocumentListener.
You provide a custom document listener to both the text fields. Once you figure out that the user has entered some value in field 1, you can disable the field 2.

This message was edited 1 time. Last update was at by Maneesh Godbole


work is the scourge of the drinking class
Mark Kafe
Ranch Hand

Joined: Jun 23, 2008
Messages: 53

Thnx Mark,
this solution also in my mind but problem is that if any user enter credit data in debit field by mistake, and when he want to correct this the credit field is disable......................

Any solutions we check textFields values on change event or key pressed event.....
Maneesh Godbole
Bartender

Joined: Jul 26, 2007
Messages: 4196

Well, if the user deletes all data in field1 then field2 will be enabled and data can be entered there.

work is the scourge of the drinking class
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Swing / AWT / SWT / JFace
 
RSS feed
 
New topic
IntelliJ open source