home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SAMPLES / TESTEND.PRG < prev    next >
Text File  |  1994-05-12  |  395b  |  17 lines

  1. #include "FiveWin.ch"
  2.  
  3. //----------------------------------------------------------------------------//
  4.  
  5. function Main()
  6.  
  7.    local oWnd
  8.  
  9.    DEFINE WINDOW oWnd FROM 1, 1 TO 20, 50 TITLE "Validations for Windows"
  10.  
  11.    ACTIVATE WINDOW oWnd ;
  12.       VALID MsgYesNo( "Do you wish to end ?" )
  13.  
  14. return nil
  15.  
  16. //----------------------------------------------------------------------------//
  17.