I have a form/subform relationship. The parent form has a blank text box linked to a blank field in a table (among 20 other fields).
My subform consists of 1 combo box that lists values in a table. Column 1 is the Key Field (autonumber) while Column 2 is the name.
What I want to do is in the afterupdate() for the combo box, I want it to send the value of the first column to the blank field in the parent form.
This is the code I'm trying to use - but it gives me an error message..."object not found"
Private Sub poc_ven_box_afterupdate()
Me!POC_Ven_Box.Column(0).Value = [forms]![applications]![LINK_POC_VEN]Value
End Sub
Anyone have any ideas why I can't send the value of the first column over to the other field after an update?
Thanks!
My subform consists of 1 combo box that lists values in a table. Column 1 is the Key Field (autonumber) while Column 2 is the name.
What I want to do is in the afterupdate() for the combo box, I want it to send the value of the first column to the blank field in the parent form.
This is the code I'm trying to use - but it gives me an error message..."object not found"
Private Sub poc_ven_box_afterupdate()
Me!POC_Ven_Box.Column(0).Value = [forms]![applications]![LINK_POC_VEN]Value
End Sub
Anyone have any ideas why I can't send the value of the first column over to the other field after an update?
Thanks!