InterviewSolution
Saved Bookmarks
| 1. |
Write a Java statement to make the jTextField1 non-editable. |
|
Answer» jTextField1.setEditable(false); |
|