Hello LivMun!
Yes indeed! Create a Logs table with the following fields:
Log (PK) - autonumber
PCName (indexed with duplicates) - string(15): holds the PC name use Environ("ComputerName").
UsrName (indexed with duplicates) - string(15): holds the user name use Environ("UserName").
DateIn - (date/time): date user entered
TimeIn - (date/time): time user entered
DateOut - (date/time): date user exited
TimeOut - (date/time): time user exited
In main menu, create a record when the app starts; on exit, using UserPC as a search key, update the log entry.
This way, you have useful data to monitor your app usage...
Good luck, JLCantara.