home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTBTN.PRG
< prev
next >
Wrap
Text File
|
1994-01-16
|
936b
|
37 lines
#include "FiveWin.ch"
static oWnd
//----------------------------------------------------------------------------//
function Main()
local oBar
local oBrush
DEFINE BRUSH oBrush COLOR nRGB( 12, 129, 87 )
DEFINE WINDOW oWnd FROM 1, 10 TO 20, 60 ;
TITLE "Testing Buttons from disk" ;
BRUSH oBrush
DEFINE BUTTONBAR oBar OF oWnd
DEFINE BUTTON OF oBar FILE "Btn1.bmp" ACTION MsgInfo( "FiveWin 1.2" ) ;
MESSAGE "You can place..."
DEFINE BUTTON OF oBar FILE "Open.bmp" GROUP ;
ACTION MsgInfo( "FiveWin 1.2" ) ;
MESSAGE "Any BMP File here..."
DEFINE BUTTON OF oBar FILE "Cut.bmp" ACTION MsgInfo( "FiveWin 1.2" ) ;
MESSAGE "Reading it from disk !!!"
SET MESSAGE OF oWnd TO "FiveWin 1.2 - The Magic of Windows & Clipper 5"
ACTIVATE WINDOW oWnd
return
//----------------------------------------------------------------------------//