home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTMETR.PRG
< prev
next >
Wrap
Text File
|
1994-01-16
|
814b
|
33 lines
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
DEFINE WINDOW oWnd FROM 1, 1 TO 10, 44 ;
TITLE OemToAnsi( "Probando los nuevos controles 'Meter'" )
ACTIVATE WINDOW oWnd ;
ON INIT ShowControls( oWnd )
return
//----------------------------------------------------------------------------//
function ShowControls( oWnd )
local nActual := 0
local oMeter
@ 2, 2 METER oMeter VAR nActual TOTAL 50 OF oWnd
@ 6, 8 BUTTON "&Disminuye" OF oWnd SIZE 90, 25 ;
ACTION oMeter:Set( nActual - 1 )
@ 6, 27 BUTTON "&Aumenta" OF oWnd SIZE 90, 25 ;
ACTION oMeter:Set( nActual + 1 )
return
//----------------------------------------------------------------------------//