Jun 19, 2001 #1 Zoilus Programmer Jun 19, 2001 5 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, I would like to have transparent panel, to see everything that is below it. Is there any way to do that? Thanks
Jun 19, 2001 #2 Rodzo Programmer May 12, 2000 13 US 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 Upvote 0 Downvote
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