Track Form Usage

Jake94

Registered User.
Local time
Today, 08:42
Joined
Dec 28, 2006
Messages
15
How can I track usage of a form?
 
You could create a table called tblFormTracker with 3 fields ( TimeStamp as Date/Time, User as Text, Action as Text). Now on you forms Open event create a record in the table.

docmd.runsql("Insert Into tblFormTracker(TimeStamp,User,Action)
Select Now(), Environ('UserName'),'OpenForm'")

Then in the close event use a similar SQl to create an CloseForm Record.
 

Users who are viewing this thread

Back
Top Bottom