home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTCLR3.PRG
< prev
next >
Wrap
Text File
|
1994-06-12
|
454b
|
21 lines
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oWnd, oIco
DEFINE WINDOW oWnd TITLE "Testing colors" COLOR "N/W"
@ 2, 2 ICON oIco FILENAME "..\icons\customer.ico" ;
ON CLICK MsgInfo( "Customers" )
oIco:lDrag = .t.
ACTIVATE WINDOW oWnd
return nil
//----------------------------------------------------------------------------//