Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_sysdate() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_SYSDATE()

 DESCRIPTION

 C_SYSDATE() allows the computer's system date to be read and changed.

 NOTES

 The function always returns the current date for the system.  To
 set the system date, include the three date parameters when the
 function is called.

 SYNTAX

 C_SYSDATE(month, day, year)

 PARAMETERS

 month (N) is the two digit month (1 - 12) in the format 99.

 day (N) is the two digit day (1 - 31) in the format 99.

 year (N) is the four digit year (1980 - 2099) in the format 9999.

 RETURNS

 C_SYSDATE() returns the current system date as a date variable.

 EXAMPLES

 && Read the system date
 ? c_sysdate() --> 01/01/90

 && Set the system date to 03/15/90 and return the previous date
 ? c_sysdate(03,15,1990) --> 01/01/90

 && Read the system date
 ? c_sysdate() --> 03/15/90


 && Save the current system date
 curdate = c_sysdate()
 ...
 ...
 ...
 && Restore the system date
 c_sysdate(month(curdate), day(curdate), year(curdate))


See Also: C_SYSTIME() C_SYSDAY()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson