I'm new to MS Access. I have a web app that needs to interact with an Access database. I want Access to get the affected row's data after the form is updated, and pass it to a script that will url-encode the values and make a POST request to a remote server.
Once I have the data, I know how to process it. The part I don't understand is how to get all the columns and values from the updated row. My understanding is that I can define a callback on a form event as follows:
formIdentifier.AfterInsert = "callbackFunction";
But my question is, how do I access all the form fields of the inserted row within callbackFunction? Do I need to pass it the form object? I've been crawling through the documentation but can't find what I'm looking for. Is this the wrong approach? Should I be doing an XML dump instead?
Thanks in advance!