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

  1. #include "FiveWin.ch"
  2.  
  3. //----------------------------------------------------------------------------//
  4.  
  5. function Main()
  6.  
  7.    local oDlg
  8.  
  9.    DEFINE DIALOG oDlg FROM 2, 5 TO 20, 40 TITLE "Non-modal"
  10.  
  11.    ACTIVATE DIALOG oDlg NOWAIT
  12.  
  13.    MsgInfo( "Hello" )
  14.  
  15. return nil
  16.  
  17.