Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #5036

Re: How do I paint on an existing Panel?

From Lew <lewbloch@gmail.com>
Newsgroups comp.lang.java.gui
Subject Re: How do I paint on an existing Panel?
Date 2012-02-17 10:45 -0800
Organization http://groups.google.com
Message-ID <7306414.1263.1329504337003.JavaMail.geo-discussion-forums@pbai10> (permalink)
References <4f16f997$0$2957$fa0fcedb@news.zen.co.uk> <4f3d6f9c$0$2500$da0feed9@news.zen.co.uk> <800725.801.1329427684213.JavaMail.geo-discussion-forums@pbbpk4> <4f3e9a6d$0$2485$db0fefd9@news.zen.co.uk>

Show all headers | View raw


"A B" wrote:
> Lew wrote:
> > Note that you did not start the GUI on the Event Dispatch Thread (EDT). I 
> > don't
> > know if this causes your problem, but it's a mistake.
> 
> I'm sure it is.  What is an EDT and what do you do with it?

As you quoted from my post, it's the "Event Dispatch Thread", as explained in 
the Swing tutorial.

Have you read the tutorials?
<http://www.oracle.com/technetwork/java/javase/documentation/tutorials-jsp-138802.html>

Also, GIYF, dude!
<http://lmgtfy.com/?q=Java+Swing+Event+Dispatch+Thread> 

> >> I've chopped the code back to just the bits directly involved with the
> >> drawing and sprinkled debugging statements everywhere, which established
> >> that the bit that calls paintComponent() (via repaint() - that's right 
> >> isn't
> >> it?) is firing but paintComponent() itself isn't.  Here's what's left, if
> >> you're interested.  Sorry if anyone finds it hard to read, I don't know 
> >> how
> >> you like it formatted.
> >
> > We like it formatted according to the well-established Java Coding 
> > Conventions
> > or a slight variation thereof.
> 
> Look I've admitted over and over again that I'm a complete newbie, there's 
> no need to keep taking me up on it like this.  No, I DON'T know what the 
> accepted conventions are unless you tell me.  I'm getting a proper Java 
> book, but it hasn't come yet.

You don't need to wait, just use your Internet connection
<http://lmgtfy.com/?q=Java+Coding+Conventions>

When you fail to do the most elementary research or learn the most basic 
things, we take it up with you. It's called "advice". Instead of getting 
all defensive, man up and take the advice. It will help you.

Sheesh.

-- 
Lew

Back to comp.lang.java.gui | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-01-18 16:55 +0000
  Re: How do I paint on an existing Panel? Knute Johnson <nospam@knutejohnson.com> - 2012-01-18 09:29 -0800
    Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-01-18 18:12 +0000
      Re: How do I paint on an existing Panel? Knute Johnson <nospam@knutejohnson.com> - 2012-01-18 15:00 -0800
  Re: How do I paint on an existing Panel? markspace <-@.> - 2012-01-18 10:55 -0800
  Re: How do I paint on an existing Panel? Roedy Green <see_website@mindprod.com.invalid> - 2012-01-20 19:54 -0800
  Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-01-30 17:59 +0000
  Re: How do I paint on an existing Panel? Neil Morris <neil.morris4@googlemail.com> - 2012-02-04 20:58 +0000
    Re: How do I paint on an existing Panel? Lew <lewbloch@gmail.com> - 2012-02-05 01:01 -0800
    Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-02-10 12:10 +0000
    Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-02-16 20:55 +0000
      Re: How do I paint on an existing Panel? Lew <lewbloch@gmail.com> - 2012-02-16 13:04 -0800
        Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-02-16 21:33 +0000
  Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-02-16 21:05 +0000
    Re: How do I paint on an existing Panel? Lew <lewbloch@gmail.com> - 2012-02-16 13:28 -0800
      Re: How do I paint on an existing Panel? "John B. Matthews" <nospam@nospam.invalid> - 2012-02-16 21:18 -0500
      Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-02-17 18:20 +0000
        Re: How do I paint on an existing Panel? Lew <lewbloch@gmail.com> - 2012-02-17 10:45 -0800
        Re: How do I paint on an existing Panel? Lew <lewbloch@gmail.com> - 2012-02-17 10:49 -0800
          Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-02-19 19:31 +0000
            Re: How do I paint on an existing Panel? Lew <noone@lewscanon.com> - 2012-02-19 14:41 -0800
              Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-03-04 16:51 +0000
                Re: How do I paint on an existing Panel? Jeff Higgins <jeff@invalid.invalid> - 2012-03-04 12:36 -0500
                Re: How do I paint on an existing Panel? Lew <noone@lewscanon.com> - 2012-03-04 10:47 -0800
                Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-03-14 17:39 +0000
                Re: How do I paint on an existing Panel? Lew <lewbloch@gmail.com> - 2012-03-14 11:07 -0700
                Re: How do I paint on an existing Panel? "John B. Matthews" <nospam@nospam.invalid> - 2012-03-14 23:01 -0400
                Re: How do I paint on an existing Panel? markspace <-@.> - 2012-03-15 09:30 -0700
        Re: How do I paint on an existing Panel? Knute Johnson <nospam@knutejohnson.com> - 2012-02-17 17:01 -0800
    Re: How do I paint on an existing Panel? Knute Johnson <nospam@rabbitbrush.frazmtn.com> - 2012-02-16 13:59 -0800
      Re: How do I paint on an existing Panel? "A B" <@bleBaker.uk> - 2012-02-17 18:07 +0000
        Re: How do I paint on an existing Panel? Knute Johnson <nospam@knutejohnson.com> - 2012-02-17 17:04 -0800
        Re: How do I paint on an existing Panel? Knute Johnson <nospam@knutejohnson.com> - 2012-02-17 17:08 -0800

csiph-web