Hello,
I have a form called SEARCH_MATERIAL_FORM, which contains a subform called Mechanics. I need the subform Source Object to change when I select a value in a combobox called MasterGroupList. The source object should be a query called MaterialsMasterGroup
Right now I have this:
Private Sub MasterGroupList_AfterUpdate()
Me!Mechanics.SourceObject = "MaterialsMasterGroup"
End Sub
But I get this error:
Run-time error '2101':
The setting you entered isn't valid for this property
Someone knows what am I doing wrong?
Thanks