Hi
I have a form that has an application link button. Clicking this button calls a modal form that collects some info (basically the name of a file), which is saved to a global variable, and the modal form is closed returning to the calling application. That’s all fine.
However, immediately after the modal form closes, I want the calling application to update its underlying DB field with that filename, and to display that updated field in the form itself.
Now, I could use the modal app to update the database - which is fine (provided I give the modal form the appropriate key) - but, on the modal form closing, how do I tell the calling form to refresh, or update the field with the newly gathered information?
In advance, thanks… 