Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Transparent panel?

Status
Not open for further replies.

Zoilus

Programmer
Joined
Jun 19, 2001
Messages
5
Location
CA
Hi,

I would like to have transparent panel, to see everything that is below it. Is there any way to do that?

Thanks
 
Hi Z

You can do a transparent form by including this in the oncreate event

procedure TForm1.FormCreate(Sender: TObject);
begin
Form1.Brush.Style:=bsClear;
Form1.BorderStyle:=bsNone;
end;

Perhaps you can do something similar for panels

Rodzo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top