Graphics g = null

B

bob8000

Hello to All

Could someone tell me why

Graphics g = getGraphics();

would equal zero

I know it should equal something like

sun.java2d.SunGraphics2D[some other stuff in here]


I am completly stumped on this one


BOB8000
 
E

Efi Merdler

bob8000 said:
Hello to All

Could someone tell me why

Graphics g = getGraphics();

would equal zero

I know it should equal something like

sun.java2d.SunGraphics2D[some other stuff in here]


I am completly stumped on this one


BOB8000

Hi,
Make sure you are calling getGraphics after the form was initialized
and displayed.

Efi
 
K

Knute Johnson

bob8000 said:
Hello to All

Could someone tell me why

Graphics g = getGraphics();

would equal zero

I know it should equal something like

sun.java2d.SunGraphics2D[some other stuff in here]


I am completly stumped on this one


BOB8000

Are you calling getGraphics() on a Component? Is it visible? Do you
know where to find the API documentation?
 
N

Nigel Wade

bob8000 said:
Hello to All

Could someone tell me why

Graphics g = getGraphics();

Called on what?
Has whatever you are invoking the method on been realized? A component which
hasn't yet been realized has no Graphics, and getGraphics() will return null.
would equal zero

zero, or null? It should never be zero.
I know it should equal something like

sun.java2d.SunGraphics2D[some other stuff in here]
 
T

Tor Iver Wilhelmsen

Could someone tell me why

Graphics g = getGraphics();

would equal zero

You mean null? getGraphics() returns null until the component has a
"peer". If you need to pick it up for some code, either do so in
addNotify() or in paint()/paintComponent(), though the latter might be
"too late" for your needs.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top