bastagio
04-03-2008, 05:24 AM
Error 2465: Application-definded or object -defined error.
I know little about access but and trying to update an old database.
Below is the code that cause the error:
rivate Sub populateRecallNoticeData()
Dim whereClause As String
If Not formDoneDrawing Then Exit Sub
' Lookup Broker Contact And Delivery Instructions
whereClause = "instruct_id = " & [instruct_id]
currentRecallID = [recall_id]
Me.Parent.cboBrokerContactName.value = [broker_contact_id]
Me.Parent.tbDeliveryIns.value = DLookup("instruction", "delivery_instructions", whereClause)
' Show/Hide New Contact Name Capability
Me.Parent.activateNewContactName (broker_contact_id = ADD_NEW_BROKER_CONTACT)
The error brought me to the first me.parent line.
What does the error mean? What does me.parent mean?
Any suggustions on how to go about fixing it?
Any help would be greatly appreciated.
Thanks,
Sal
I know little about access but and trying to update an old database.
Below is the code that cause the error:
rivate Sub populateRecallNoticeData()
Dim whereClause As String
If Not formDoneDrawing Then Exit Sub
' Lookup Broker Contact And Delivery Instructions
whereClause = "instruct_id = " & [instruct_id]
currentRecallID = [recall_id]
Me.Parent.cboBrokerContactName.value = [broker_contact_id]
Me.Parent.tbDeliveryIns.value = DLookup("instruction", "delivery_instructions", whereClause)
' Show/Hide New Contact Name Capability
Me.Parent.activateNewContactName (broker_contact_id = ADD_NEW_BROKER_CONTACT)
The error brought me to the first me.parent line.
What does the error mean? What does me.parent mean?
Any suggustions on how to go about fixing it?
Any help would be greatly appreciated.
Thanks,
Sal