| Author |
GetText problem in a GUI
|
garfild Baram
Ranch Hand
Joined: Mar 24, 2003
Posts: 60
|
|
Hi, I have a very very strange problem. I created a GUI that contains a text box text1. In my code I have the following line: String LabelId = text1.getText().trim(); If (LabelId == null) { ...... } I didn't initialized text1 so i expected to enter the If statement but it didn't. even If (LabelId == "") { ...... } dosent put me inside the If! What did I miss??? Please advise garfild
|
 |
Amol Desai
Ranch Hand
Joined: Jan 29, 2003
Posts: 82
|
|
Hi, Try using if (LabelId.equals("")) { ...... } Get back in case of any problems
|
 |
garfild Baram
Ranch Hand
Joined: Mar 24, 2003
Posts: 60
|
|
It works as needed. Thanks Amol
|
 |
 |
|
|
subject: GetText problem in a GUI
|
|
|