Click to See Complete Forum and Search --> : transparent panel


freerose
August 5th, 1999, 09:02 PM
hello...
i'm useing jdk1.0.2 in applet programming.
how can make transparent panel?
i wanna make it...
please something information about it...
thanks for read...


.. Rose

unicman
August 7th, 1999, 01:32 PM
Well there is no direct method. But try sub-classing 'Panel' like this


public class MyPanel extends Panel
{
public void update(Graphics g)
{
super.paint( g );
}

public void paint(Graphics g)
{
super.paint( g );
}
}




- UnicMan
http://members.tripod.com/unicman