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

  1. //----------------------------------------------------------------------------//
  2. //  FiveWin 1.5 - Tutorial
  3. //  (c) A.Linares, F.Pulpón 1993-4
  4. //
  5. //  Para construir:  BUILD Tutor01
  6. //  To build:        BUILD Tutor01
  7. //----------------------------------------------------------------------------//
  8.  
  9. // El típico ejemplo de bienvenida, desde Windows!
  10. // Typical Welcome message, from Windows!
  11.  
  12. #include "FiveWin.ch"
  13.  
  14. //----------------------------------------------------------------------------//
  15.  
  16. function Main()
  17.  
  18.     SET 3DLOOK ON
  19.  
  20.     MsgInfo( "FiveWin 1.5" + Chr( 13 ) + "(c) A.Linares & F.Pulpon, 1993-4",;
  21.              "Clipper for Windows Library" )
  22.  
  23. return nil
  24.  
  25. //----------------------------------------------------------------------------//
  26.