Results 1 to 5 of 5

Thread: [RESOLVED] change JLabel text color

  1. #1

    Thread Starter
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Resolved [RESOLVED] change JLabel text color

    Hi all,

    I was wondering if there is a way to change the color of a specific String in a JLabel's text without having to extend the JLabel class and re-implementing the paint method
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  2. #2
    Member
    Join Date
    Dec 2004
    Posts
    44

    Re: change JLabel text color

    Yes it is simple just give the setForeground() property
    eg
    Label1.setForeground(Color.red);
    DIPLOMA HOLDER IN COMPUTER TECHNOLOGY

  3. #3

    Thread Starter
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: change JLabel text color

    I meant a part of the Text not all of it
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  4. #4
    Frenzied Member System_Error's Avatar
    Join Date
    Apr 2004
    Posts
    1,111

    Re: change JLabel text color

    You can't; it will affect the whole label (all the time). The only workaround is using multiple labels or changing your component to a jeditorpane/jtextpane which is nothing like a label.

  5. #5

    Thread Starter
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: change JLabel text color

    Quote Originally Posted by System_Error
    You can't; it will affect the whole label (all the time). The only workaround is using multiple labels or changing your component to a jeditorpane/jtextpane which is nothing like a label.
    That's what I was afraid of.

    Thanks anyway guys
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

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