CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 1999
    Posts
    2

    transparent panel

    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

  2. #2
    Join Date
    May 1999
    Location
    Pune, MH, India.
    Posts
    453

    Re: transparent panel

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured