home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTDATE.PRG
< prev
next >
Wrap
Text File
|
1994-04-28
|
611b
|
24 lines
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local dDate := Date()
MsgInfo( "Current Date:" + DToC( dDate ) )
if ! SetDate( 25, 11, 1982 ) // FiveWin SetDate() function
MsgAlert( "Sorry, I could not change the date" )
endif
MsgInfo( "Now the date is:" + DToC( Date() ) )
SetDate( Day( dDate ), Month( dDate ), Year( dDate ) )
MsgInfo( "Ok, again back to:" + DToC( Date() ) )
return
//----------------------------------------------------------------------------//