home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTEXIT.PRG
< prev
next >
Wrap
Text File
|
1994-05-30
|
470b
|
18 lines
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oWnd
DEFINE WINDOW oWnd FROM 1, 1 TO 20, 60 TITLE "Trying to End Windows"
ACTIVATE WINDOW oWnd ;
ON INIT MsgInfo( "Try to close Windows when I am running..." ) ;
VALID MsgYesNo( "Do we let Windows end ?" )
return nil
//----------------------------------------------------------------------------//