Re: Document Filtering Question



This won't handle backspace and there are other issues but this does what you said you wanted.

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class test9 {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JTextField tf = new JTextField(30);
tf.addKeyListener(new KeyAdapter() {
public void keyTyped(KeyEvent ke) {
System.out.print(ke.getKeyChar());
ke.consume();
}
});

f.add(tf,BorderLayout.CENTER);
f.pack();
f.setVisible(true);
}
});
}
}

What is the actual purpose of this?

--

Knute Johnson
email s/knute/nospam/

--
Posted via NewsDemon.com - Premium Uncensored Newsgroup Service
------->>>>>>http://www.NewsDemon.com<<<<<<------
Unlimited Access, Anonymous Accounts, Uncensored Broadband Access
.



Relevant Pages

  • Re: how to use ToolTip functions on a Graphics area?
    ... public void paint{ ... Tooltips are built in to Swing components. ... Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ... Unlimited Access, Anonymous Accounts, Uncensored Broadband Access ...
    (comp.lang.java.gui)
  • Re: Resizing jpg for text box or icon
    ... If you are going to display it in a Component you can scale it with the Graphics.drawImagemethod that takes a size argument. ... public void paintComponent{ ... Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ... Unlimited Access, Anonymous Accounts, Uncensored Broadband Access ...
    (comp.lang.java.programmer)
  • Re: Coordinating multiple JTextField updates across panels
    ... A really fast computer might not. ... public void run{ ... Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ... Unlimited Access, Anonymous Accounts, Uncensored Broadband Access ...
    (comp.lang.java.gui)
  • Re: Coordinating multiple JTextField updates across panels
    ... public class teste extends JFrame implements ActionListener { ... public void actionPerformed{ ... Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ... Unlimited Access, Anonymous Accounts, Uncensored Broadband Access ...
    (comp.lang.java.gui)
  • Re: Displaying a Text upside Down using an applet
    ... public class testa extends Applet { ... public void paint{ ... Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ... Unlimited Access, Anonymous Accounts, Uncensored Broadband Access ...
    (comp.lang.java.gui)