Hi
Im trying to create a class Component that draws in
a applet without passing the applet Graphics into the
class Component.
I have read same posts but didnt find nothing, only
public void paint(Graphics g) {
super.paint(g);
or
classComponent.paint(g);
}
There most be a way of drawing in the applets without doing
this, like the Buttons (and more) only do -
Button b = new Button("MyButton");
b.setBounds(10,10,100,100);
this.add(b);
and the button is draw in the applet without passing
the applet Graphics.
Please help.
Thanks