I have a field "GPBuyerProjectID" in my query that my form is based on.
I have 5 other combo boxes just like this with different names, but, for some reason I am getting the message
"Compile Error" "Method or Data Member Not Found".
I have checked my queries, my field list, relationships and it all matches up. The field is in the field list for the query so I don't see how it can't find it.
When I go into VBA and type "Me." the list of available field names come up but "GPBuyerProjectID" s is not in it.
Does anyone know what might be causing this?
Private Sub GPBuyerName_BeforeUpdate(Cancel As Integer)
Me.GPBuyerProjectID = Me.ID
Me.GPBuyer = "GP Buyer"
End Sub
Thanks!
I have 5 other combo boxes just like this with different names, but, for some reason I am getting the message
"Compile Error" "Method or Data Member Not Found".
I have checked my queries, my field list, relationships and it all matches up. The field is in the field list for the query so I don't see how it can't find it.
When I go into VBA and type "Me." the list of available field names come up but "GPBuyerProjectID" s is not in it.
Does anyone know what might be causing this?
Private Sub GPBuyerName_BeforeUpdate(Cancel As Integer)
Me.GPBuyerProjectID = Me.ID
Me.GPBuyer = "GP Buyer"
End Sub
Thanks!