PDA

Click to See Complete Forum and Search --> : creating my own text box ( need code)


daylor
Nov 24th, 2000, 01:59 PM
i need code of custom textBox..
( textBox that was created from scratch usually used in chat room).

again, not the textBox that come in AWT.

i need code of textBox that has full source code.

Dec 4th, 2000, 05:29 PM
You want to know how to extend TextArea to do something specific or you want a finished java application or applet with all the cool functions of your favorite chat program?

Here is the former.

public class MyCustomTextBox extends java.awt.TextArea{
public MyCustomTextBox(){
setText("i am the daylor custom textBox..");
}
}