* Makefile
* config/*
* contrib/*
* doc/*
* extras/*
* include/*
* lib/*
* package/*
* src/*
* tests/*
* utils/*
* removed empty lines left after removed '$' + 'Id' + '$' identifiers
31 lines
624 B
Plaintext
31 lines
624 B
Plaintext
PROCEDURE Main()
|
|
|
|
CLS
|
|
|
|
? "DEFAULT IDLEREPEAT =", Set( _SET_IDLEREPEAT )
|
|
?
|
|
? "Idle Block should be displayed multiple times until key or 10 seconds elapsed!"
|
|
? "Press any key to begin..."
|
|
?
|
|
Inkey( 0 )
|
|
|
|
hb_idleAdd( {|| QOut( "Idle Block" ) } )
|
|
Inkey( 2 )
|
|
|
|
Set( _SET_IDLEREPEAT, .F. )
|
|
|
|
hb_idleAdd( {|| QOut( "Idle Block2" ) } )
|
|
|
|
CLS
|
|
? "Idle Block & Block-2 should display ONCE! while waitning for key or 10 seconds elapsed!"
|
|
?
|
|
Inkey( 2 )
|
|
|
|
?
|
|
? "Again - Idle Block & Block-2 should display ONCE! while waitning for key or 10 seconds elapsed!"
|
|
?
|
|
Inkey( 2 )
|
|
?
|
|
|
|
RETURN
|