HOME
Components
Tutorials
Add Trick
Links
Contacts
Code Category
ActiveX
Components
Database
Files
Forms
Graphic
Internet/Lan
Math
Miscellaneous
Multimedia
Printing
Strings
System Information
Windows
Apatar Open Source ETL and EAI
Delphi source code for
Forms
>> Make a form transparent
Category:
Forms
Title:
Make a form transparent
Date added:
15.03.2006
Hits:
2999
procedure
TForm1.FormCreate(Sender: TObject);
begin
SetWindowLong(Form1.Handle, GWL_EXSTYLE,
(GetWindowLong(Form1.Handle, GWL_EXSTYLE)
or
WS_WX_TRANSPARENT));
end;
Related Delphi Source Code:
1. How to get and set mouse position?
(3963 Hits)
2. How to show a form in full-screen mode?
(3489 Hits)
3. How to minimize to System Tray?
(6238 Hits)
4. How to prevent movement of a form outside the desktop?
(1750 Hits)
5. How to use image as backgroung of form?
(2559 Hits)
For any problems or recommendations about Delphi Tricks site, please
feel free to contact us on that e-mail:
support@delphitricks.com
.
If you want to advertise on the site use that e-mail:
advertise@delphitricks.com
.
You can freely use or modify these Delphi source codes for non-commercial use. We are not responsible of any damages that can be caused by the utilisation of that source codes.
Copyright © 2006
AVSoftware
Company. All rights reserved.