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
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...
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
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.....