Change System Date/Time

  • Thread starter Thread starter Mike C
  • Start date Start date
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.
 
Here's an example from the Date Statement help file.

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