VBA for Office2007 seems to give the possibility to set system date and time with:
date = variable and time = variable
date = variable
time = variable
however, if I tr
Use DateSerial and TimeSerial. For example:
Date = DateSerial(2015, 11, 4) 'For Date changing Time = TimeSerial(12, 10, 22) 'For Time changing
...or you can try to use ShellExecute and Date.