Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. niritbakshi

    JTextArea is Problematic

    It doesn't work... I'll just use TextArea instead of JTextArea.
  2. niritbakshi

    JTextArea is Problematic

    Well, my text may be very hugh, because it is source-code of websites. Anyway, I searched the API and couldn't find what can I do with this JTextPane. I'll try later today your tip about JScrollPane. Wow.... Swing is driving me crazy!!! :-)
  3. niritbakshi

    JTextArea is Problematic

    Can you give me a working example? I tried JScrollPane scroll = new JScrollPane(); scroll.setViewportView(ta); ta is the JTextArea. Can you tell me what's wrong?
  4. niritbakshi

    JTextArea is Problematic

    Hello. I have a very weird problem using JTextArea class. Whenever i put large amount of text in it, it is getting hugh and controls on my screen. in TextArea class, it gets an automatic scrollbar. How to I make the same thing in JTextArea? please help me...
  5. niritbakshi

    drawing BufferedImage

    I don't want to nag you, but your example doesn't use the BufferedImage class. I wan't to use an object of this class in order to use the setRGB() method of this class. (I want to create fade effect). Is there another way to create fade effect?
  6. niritbakshi

    drawing BufferedImage

    Ok, so i have another question. How do I get BufferedImage? Through the getImage() method?
  7. niritbakshi

    drawing BufferedImage

    How do i draw a BufferedImage? The drawImage() method accept only Image objects.
  8. niritbakshi

    Updating urls value

    Does it work also in applcations?
  9. niritbakshi

    Updating urls value

    I need help in updating a URL object's value when a button is being pressed. I have Textfield names tf and a url Object names page I tried the following: public void action(Event evt, Object arg) { if (evt.target instanceof Button) { page = tf.getText(); return true; } else...

Part and Inventory Search

Back
Top