| Author |
How to make jTextField 's input unscrollable?
|
walter wang
Ranch Hand
Joined: Jun 02, 2001
Posts: 144
|
|
Dear All i create a JTextField, i want to set it inputsize = 5(charaters) i am doing like this JTextField jTextField = new JTextField(5); jTextField.setScrollOffset(0); but it doesnot work out it is still scrollable, i main i could input more than 5 charaters How to fix JTextField's input size? Thx in advance Walter wang
|
public class Walter{
public boolean is_Working_Now(boolean is_boss_Coming){
return is_boss_Coming;
}
|
 |
Paul Stevens
Ranch Hand
Joined: May 17, 2001
Posts: 2823
|
|
You need to create a class that extends PlainDocument and override the insertString() like this: [This message has been edited by Paul Stevens (edited December 17, 2001).]
|
 |
 |
|
|
subject: How to make jTextField 's input unscrollable?
|
|
|