-
Hi all,
Does anyone know how to capture the system time and date at shutdown. I need a way to log a user's time on a computer. I need a way to know when a user logs off their computer.
Any help would be appreciated and much needed.
Thanks All,
ande211
-
Make a simple invisible form to run at startup, that will close on attempt to shutdown
Paste this into the form_unload event:
open filename for append as #1
print #1, now
close #1
And set the filename to the filepath where you want the dates to be stored.
Good luck!