Not without a lot of overhead. You could add a new table to the database with two columns - TableName and RecordCount. You would then need a new form which was left open all the time. This form would have a timer event. Every n clicks it would run a count query for each table you wanted to be notified about. It would then check the current count with the stored count. If they are different, it would pop up a notification form and save the newest count.
If it is possible to delete records from this table as well as add them, you need to track the Max() autonumber value and compare and store that rather than the record count.