Listen to a table

G

Guest

Hi All,
I'm having a table that gets data rows from an external application, and I
need to manipulate or insert similar rows according to specific field data.
Is it possible to "listen" to a table and run a subrutine each time a new
record was instered or updated?
Thanks a lot in advance
 
G

Guest

Thanks Alex,
I think that's the idea. Can you send/post me to a source example?
Thanks again
 
P

pietlinden

Thanks Alex,
I think that's the idea. Can you send/post me to a source example?
Thanks again

create a form with a timer, OnTimer, check the record count in the
table. Write it to a form-level variable in the form.
If DCount() > lngRecordCount Then
'... new records added
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top