Greetings,
I am needing to develop a subform version of a form that is already in my application.
That form calls an AddRecord / EditRecord form itself.
When those forms Commit an update, they call back to the parent form, firing a re-query event and passing the event the ID of the record which was added/updated.
That all works fine and dandy, until...
Now I am developing this clone of that records list form, to be used in a subform context on another main form. It will be known via a different name this time to receive the callback upon successful commit of the INSERT/UPDATE.
I am thinking to make this record list / add+edit dialog handshake unique in that the list form will pass some sort of token to the add/edit dialog in order that it know who called it, thus know who to send the requery event to when it has successfully committed.
Is that sort of information (which form opened another form) available automatically? Or do I need to pass it along myself when the child form is opened?
I am needing to develop a subform version of a form that is already in my application.
That form calls an AddRecord / EditRecord form itself.
When those forms Commit an update, they call back to the parent form, firing a re-query event and passing the event the ID of the record which was added/updated.
That all works fine and dandy, until...
Now I am developing this clone of that records list form, to be used in a subform context on another main form. It will be known via a different name this time to receive the callback upon successful commit of the INSERT/UPDATE.
I am thinking to make this record list / add+edit dialog handshake unique in that the list form will pass some sort of token to the add/edit dialog in order that it know who called it, thus know who to send the requery event to when it has successfully committed.
Is that sort of information (which form opened another form) available automatically? Or do I need to pass it along myself when the child form is opened?