Change System Date/Time

M

Mike C

Does anyone know how to change the date/time on my
computer with an on click procedure? My OS is windows
2000 and using Access xp. Thanks in advance.
 
R

Ronald Dodge

Here's an example from the Date Statement help file.

Dim MyDate
MyDate = #February 12, 1985# ' Assign a date.
Date = MyDate ' Change system date.
 
Top