home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BUG 4
/
BUGCD1997_05.BIN
/
aplic
/
clip4win
/
clip4win.exe
/
C4W30E.HUF
/
SOURCE
/
CONTRIB
/
FILLSTEE.ZIP
/
FILLSTEE.PRG
Wrap
Text File
|
1993-06-04
|
540b
|
20 lines
// Filled-steel box:
function FillSteel( hWnd )
local hDC := GetDC( hWnd )
local aRect := { 171, 42, 628, 399 }
OffsetRect( aRect, 1, 1 )
FillRect( hDC, aRect[ 1 ], aRect[ 2 ], aRect[ 3 ], aRect[ 4 ],;
GetStockObject( LTGRAY_BRUSH ) )
FrameRect( hDC, aRect[ 1 ], aRect[ 2 ], aRect[ 3 ], aRect[ 4 ],;
GetStockObject( DKGRAY_BRUSH ) )
OffsetRect( aRect, -1, -1 )
FrameRect( hDC, 100, 100, 140, 140, GetStockObject( WHITE_BRUSH ) )
ReleaseDC( hWnd, hDC )
return nil