Delphi Source Code
Search engine
HOME Components Tutorials Add Trick Links Contacts
ActiveX Components Database Files Forms Graphic Internet/Lan Math Miscellaneous Multimedia Printing Strings System Information Windows

Delphi source code for Forms >> Make rounded windows


Category: Forms
Title: Make rounded windows
Date added: 15.03.2006
Hits: 2294



function CreateEllipticRgn(
    nLeftRect: Integer,  // x-coordinate of the upper-left corner
    nTopRect: Integer,  // y-coordinate of the upper-left corner
    nRightRect: Integer, // x-coordinate of the lower-right
    nBottomRect: Integer // y-coordinate of the lower-right corner
   ): HRGN;

function SetWindowRgn(
    hWnd: HWND, // handle to window whose window region is to be set
    hRgn: HRGN, // handle to region
    bRedraw: Boolean // window redraw flag
   );

procedure TForm1.FormCreate(Sender: TObject);
var
  hRegion: HRGN;
begin
  BorderStyle := bsNone;
  hRegion := CreateEllipticRgn(1, 1, 200, 200);
  SetWindowRgn(Handle, hRegion, True);
end;

Related Delphi Source Code:
Delphi Tricks
Delphi Tricks
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.