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
Printable View
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
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