Hi,
guess I am overlooking something,
using a list, I change what info is displayed on a form that has 3
subforms.
after selecting the topic to display, the subform names and links are
read from a table, then the master form is updated using the info
'all values = string variable
Me.Sfrm_3.Sourc eObject = form_3
Me.Sfrm_2.Sourc eObject = form_2
Me.Sfrm_1.Sourc eObject = form_1
Me.Title_1.Capt ion = form1_txt
Me.Title_2.Capt ion = form2_txt
Me.Title_3.Capt ion = form3_txt
Me.Sfrm_3.LinkM asterFields = Link_2_Parent
Me.Sfrm_3.LinkC hildFields = Link_2_Child
Me.Sfrm_2.LinkM asterFields = Link_1_Parent
Me.Sfrm_2.LinkC hildFields = Link_1_Child
my problem is it keeps asking through pop-up windows the parameter for
the last used link-field data.
have tried setting linkchildfield and parent to null or nothing or ""
before the update.
It works fine if I just hit enter each time, the info is correct in
the end, but apparently the links are still there during the change
over.
what do I need to add to be able to change the subforms and link-
fields on an open form without the popup parameter windows?
thanks
guess I am overlooking something,
using a list, I change what info is displayed on a form that has 3
subforms.
after selecting the topic to display, the subform names and links are
read from a table, then the master form is updated using the info
'all values = string variable
Me.Sfrm_3.Sourc eObject = form_3
Me.Sfrm_2.Sourc eObject = form_2
Me.Sfrm_1.Sourc eObject = form_1
Me.Title_1.Capt ion = form1_txt
Me.Title_2.Capt ion = form2_txt
Me.Title_3.Capt ion = form3_txt
Me.Sfrm_3.LinkM asterFields = Link_2_Parent
Me.Sfrm_3.LinkC hildFields = Link_2_Child
Me.Sfrm_2.LinkM asterFields = Link_1_Parent
Me.Sfrm_2.LinkC hildFields = Link_1_Child
my problem is it keeps asking through pop-up windows the parameter for
the last used link-field data.
have tried setting linkchildfield and parent to null or nothing or ""
before the update.
It works fine if I just hit enter each time, the info is correct in
the end, but apparently the links are still there during the change
over.
what do I need to add to be able to change the subforms and link-
fields on an open form without the popup parameter windows?
thanks
Comment