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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Transparent Form ???

Status
Not open for further replies.

BobbaFet

Programmer
Feb 25, 2001
903
NL
Hi all,

I would like to know how can I make a form transparent ???
Plz help me out, thanx !!!

[bobafett] BobbaFet [bobafett]

Everyone has a right to my opinion.
E-mail me at caswegkamp@hotmail.com
 
Thank you for your quick reply, Erik.

Does anyone else have any good idea's ??? I am still a
student (Java unfortunately), and I dont have (stupid as
this may sound) 30$ to spend, I need food and drink
hahaha !!!

Thank you for reading my thread !!! [bobafett] BobbaFet [bobafett]

Everyone has a right to my opinion.
E-mail me at caswegkamp@hotmail.com
 
Hi BobbaFet (Are you ready for Attack of the clones)

The Delphi Guru in PCPlus Magazine (UK) seems to think that this is only pssible with the latest versions of Windows (i.e. Not W95 or W98).
That aside if you can get hold of (the last 2 editions) of PCPlus he is runing a tutorial on this very subject.

Steve
 
Maybe like this:

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

procedure TForm1.Button1Click(Sender: TObject);
begin
Application.Terminate;
end;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top