|
-
Nov 24th, 2000, 02:59 PM
#1
Thread Starter
Member
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, 06:29 PM
#2
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..");
}
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|