home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SAMPLES / TESTCT3D.PRG < prev    next >
Text File  |  1994-01-16  |  566b  |  29 lines

  1. // Testing Microsoft Ctl3d.dll 3D look
  2.  
  3. #include "FiveWin.ch"
  4.  
  5. //----------------------------------------------------------------------------//
  6.  
  7. function Main()
  8.  
  9.    SET 3DLOOK ON                     // New Microsoft 3d Look
  10.  
  11.    MsgInfo( "FiveWin 1.3" )
  12.    cGetFile( "*.*", "Select a file" )
  13.  
  14.    SET 3DLOOK OFF
  15.  
  16.    MsgInfo( "Ahora nada" )
  17.  
  18.    SET LOOK 3D ON
  19.  
  20.    MsgInfo( "Otra vez puesto" )
  21.  
  22.    SET LOOK3D OFF
  23.  
  24.    MsgInfo( OemToAnsi( "Se acabó" ) )
  25.  
  26. return
  27.  
  28. //----------------------------------------------------------------------------//
  29.