You can use a simple batch file to append details to a text file. Not only
that, you could send an alert straight to your computer desktop too by using
'netsend' command.
Are you comfortable coding a little VBA (Visual Basic for Applications) in
Access? If you have a form that opens (such as a splashscreen, switchboard,
or main menu), you can use the OnTimer event to call your batch file:
***************** CUT HERE********************
Private Sub Form_Timer()
'=========================================
'DATE: September 30, 2004
'AUTHOR: YourNameHere
'COMMENTS:
'
'1) This subroutine launches a MS-DOS
'batch script.
'=========================================
'DECLARING VARIABLE
Dim strAppName As String
'INITIALIZING VARIABLE (USING A MAPPED DRIVE)
strAppName = "R:\YourBatchFileName.bat"
'CALLING MS-DOS BATCH SCRIPT TO PERFORM APPLICATION UPDATE
Call Shell(strAppName, 1)
End Sub
***************** END HERE********************
Then you create a batch file that records whomever is opening the
application, including the computer they are using. Morover, you can send
yourself a message at the same time. Here's an excerpt of code on the
netsend command:
netsend YourLoginNameHere "%USERNAME% has just launched the program." > nul
However, a better solution would be just to make sure they can't use it to
begin with. You can code a splashscreen to prevent unauthorized users with
access.
Best regards,
Todd