Link to home
Start Free TrialLog in
Avatar of Buda
Buda

asked on

Transparent windows.

How can I make my form or control transparent?
Avatar of Igor UL7AAjr
Igor UL7AAjr
Flag of Kazakhstan image

Hi Buda,

if you are don't going to move form over the screen then it's easy.

type
  TForm1 = class(TForm)
  private
  public
    procedure WMERASEBKGND(var M: TMessage); message WM_ERASEBKGND;
  end;

....

procedure TForm1.WMERASEBKGND(var M: TMessage);
begin
  M.Result := 0;
end;

-----
Igor.

Avatar of Mohammed Nasman
look at this article, you will like the forms there
http://delphi.about.com/library/weekly/aa120898.htm

Avatar of boonhui78
boonhui78

Hey!
Check out this cool component (free)
It will accomplish what you wanted to do =)

Go to http://www.torry.net/ and search for "Cool Form"

Regards
ASKER CERTIFIED SOLUTION
Avatar of Mohammed Nasman
Mohammed Nasman
Flag of Palestine, State of image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial