aspose file tools
The moose likes Swing / AWT / SWT and the fly likes How to make jTextField 's input unscrollable? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "How to make jTextField Watch "How to make jTextField New topic
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).]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to make jTextField 's input unscrollable?
 
Similar Threads
Reg. Validatin JTextFields
How to set the size of a JTextField ?
How to set the formatter in Eclipse?
Get data from jtext field
JOptionPane.showInputDialog to accept multiple inputs