Tools
20-20-7.ASC
Associated article: Don't Be a Square
Tags: .NET Tools
Source code accompanying Al Williams "20/20" column in which he shows how you can to free Windows programs from their square (and rectangular) confines by creating irregular-shaped windows that are simple and can be implemented in most languages.
20/20 Column
by Al Williams
Example 1:
{ Region is relative to window area }
GetWindowRect(handle,r);
{ normalize so that 0,0 is top/left }
r.right:=r.right-r.left;
r.bottom:=r.bottom-r.top;
r.left:=0;
r.top:=0;
rgn:=CreateEllipticRgn(0,0,r.right,r.bottom);
...


