G
Guest
I use tblProfilesAssociations.sfrmProfilesAssociations.cbProfilesAssociations to record relating profiles. cbProfilesAssociations is bound to tblProfiles.txtProfileID. It works like this: when a txtProfileID is selected, a record in tblProfilesAssociations is created. This works fine. However, it's only one record and I need it to be recorded twice
sfrmProfilesAssociations is used in many forms. Therefore, if a record is created in one form, it also needs to be created so that when the related form is opened the record will appear in sfrmProfilesAssociation as well
To help clarify - here's the course of database events
-Open frmFinishedGoods
-Create record 12345
-Create record in sfrmProfilesAssociations 205055 (corrugated)
-Open frmPKCorrugated
-Retrieve record 205055
-Examine sfrmProfilesAssociations. No record of being associated with 12345
I hope that more clearly illustrates. I suppose what I need is some AfterUpdate event as well as a Delete event because I'll also want to delete the related record should one of them require deleting
BIG thanks in advance!
sfrmProfilesAssociations is used in many forms. Therefore, if a record is created in one form, it also needs to be created so that when the related form is opened the record will appear in sfrmProfilesAssociation as well
To help clarify - here's the course of database events
-Open frmFinishedGoods
-Create record 12345
-Create record in sfrmProfilesAssociations 205055 (corrugated)
-Open frmPKCorrugated
-Retrieve record 205055
-Examine sfrmProfilesAssociations. No record of being associated with 12345
I hope that more clearly illustrates. I suppose what I need is some AfterUpdate event as well as a Delete event because I'll also want to delete the related record should one of them require deleting
BIG thanks in advance!