I seem to have a strage problem regarding the linking of a sub form. I have a series of sub form linked to a master form in which upon loading all seem to work fine except one. On this particular one, I have linked the master field (control) to a control on the sub form. Very strangly, the link seems to be fine and when you toggle between the tabs where the sub forms are everything also seems to be fine. Unfortunately, after exiting the master form and then re-entering, the new data no longer appears.. (the data in the underlying table however is still there)
Also to note.. Strangely, when I remove all the links between the master form and the sub form upon viewing the form in view mode, no records are shown! (I was expecting to see ALL the records in the underlying table)
I would appreciate any advice.
Thanks, A
I have had a similar issue when linking multiple subforms to one master. One trick that I find quite useful is, instead of linking the subform using the forms field control, I do the following:
forms!frmMaster.controlname
. Save and close the query and the form.Me.controlname.value = forms!frmMaster.controlname
This should solve your problem