how to set uneditable the jTextPane ???
807569Jul 12 2006 — edited Jul 12 2006hi ,
In my application i need the JTextPane should get disabled (unEditable) after it gets load some questions from database (as my
requirements)
here i had an problem after loading the question from the database the jTextPane is editable eventhough i coded the following:
jTextPane.setEditable(false);
jTextPane.setFocusable(false);
jTextPane.setEnabled(false);
the above coding doesn't works well ...
I need after the question is loaded in the jTextPane it should not be editable mode
What to do?????
Please help me out
Thankx in advance
Shanthy