home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TUTOR03.PRG
< prev
next >
Wrap
Text File
|
1994-06-04
|
1KB
|
39 lines
//----------------------------------------------------------------------------//
// FiveWin 1.5 - Tutorial
// (c) A.Linares, F.Pulpón 1993-4
//
// Construir con BUILD Tutor03
// Build with BUILD Tutor03
//----------------------------------------------------------------------------//
// Nuestra primera ventana, ahora con ejemplos de control de eventos y
// con barra de mensajes
// Our first Window, now with Control events examples and with a
// message bar
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oWnd, oBrush
DEFINE BRUSH oBrush FILENAME "..\bitmaps\Back1.bmp"
DEFINE WINDOW oWnd TITLE "FiveWin" ;
FROM 3, 6 TO 20, 70 ;
BRUSH oBrush
SET MESSAGE OF oWnd TO "FiveWin 1.5, (c) A.Linares & F.Pulpon, 1993-4"
ACTIVATE WINDOW oWnd ;
ON LEFT CLICK MsgInfo( "Left Click", "Event!" ) ;
ON RESIZE MsgAlert( "ReSize", "Event!" ) ;
ON PAINT oWnd:Say( 2, 2, "Hello World!" )
return nil
//----------------------------------------------------------------------------//