Tue Oct 21, 2008 9:09 pm
http://forum.java.sun.com/thread.jspa?threadID=418002&messageID=1876495
// *** Initialisation ***
public void init() {
setBackground(Color.white);
addKeyListener(this);
hasDecimalPoint = false;
}
// *** Impl�mentation de l'interface KeyListener ***
public void keyTyped(KeyEvent ke) {
char c = ke.getKeyChar();
if (!Character.isDigit(c))
ke.consume(); // prevent event propagation
}
Tue Oct 21, 2008 9:18 pm
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.