hi All,
I have a navigation for 01 Main
On the navigation form, I have a subform FrmSocialGraph
On the FrmSocialGraph I have a Subform FrmSGUsgage - which has a list box on it. From the list box I need to pass a value to the textbox on FrmSOcialGraph.
My code looks as follows:
Private Sub Systemlist_Click()
Forms![01 main]!frmsocialgraph!SystemLookup = Forms.[01 main].frmsocialgraph.FrmSGSystems.Form.Systemlist.Column(0, Me.Systemlist.ListIndex)
DoCmd.OpenQuery "QrySocialGraph_systems"
End Sub
Prior to putting the form onto the navigation form everything worked.
However since trying to reference it through the navigation form, I get an error
OBJECT DOES NOT SUPPORT THIS PROPERTY OR METHOD.
Does anything know how to fix this?
appreciate the help.
Thank you
I have a navigation for 01 Main
On the navigation form, I have a subform FrmSocialGraph
On the FrmSocialGraph I have a Subform FrmSGUsgage - which has a list box on it. From the list box I need to pass a value to the textbox on FrmSOcialGraph.
My code looks as follows:
Private Sub Systemlist_Click()
Forms![01 main]!frmsocialgraph!SystemLookup = Forms.[01 main].frmsocialgraph.FrmSGSystems.Form.Systemlist.Column(0, Me.Systemlist.ListIndex)
DoCmd.OpenQuery "QrySocialGraph_systems"
End Sub
Prior to putting the form onto the navigation form everything worked.
However since trying to reference it through the navigation form, I get an error
OBJECT DOES NOT SUPPORT THIS PROPERTY OR METHOD.
Does anything know how to fix this?
appreciate the help.
Thank you