You can do it by creating e new table in which you put the fileds "NameUser", "Date", "Action", ...
On each form you, after each entry in a field, you put these actions in that table
I do it as follow:
set rs = currentdb.openrecordset("Table")
rs.addnew
rs("NameUser") = UserName
rs("Date") =...