home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTBLOC.PRG
< prev
next >
Wrap
Text File
|
1994-05-30
|
553b
|
23 lines
// Disk-Storable CodeBlocks Objects
// (c) FiveWin Object-tools
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oBlock
oBlock = TBlock():New( "{ | cMsg | MsgInfo( cMsg ) }" )
oBlock:Eval( "CodeBlocks storables on disk!" )
// Now lets try to build a 'bad' CodeBlock
oBlock = TBlock():New( "{ || MsgAlert( cTest )" ) // '}' missing !
return nil
//----------------------------------------------------------------------------//