Results 1 to 2 of 2

Thread: creating my own text box ( need code)

  1. #1

    Thread Starter
    Member
    Join Date
    Apr 2000
    Posts
    42
    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.


  2. #2
    Guest

    Question

    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
  •  



Click Here to Expand Forum to Full Width