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 >
Wrap
Text File
|
1994-01-16
|
566b
|
29 lines
// Testing Microsoft Ctl3d.dll 3D look
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
SET 3DLOOK ON // New Microsoft 3d Look
MsgInfo( "FiveWin 1.3" )
cGetFile( "*.*", "Select a file" )
SET 3DLOOK OFF
MsgInfo( "Ahora nada" )
SET LOOK 3D ON
MsgInfo( "Otra vez puesto" )
SET LOOK3D OFF
MsgInfo( OemToAnsi( "Se acabó" ) )
return
//----------------------------------------------------------------------------//