RJGoodhead
Registered User.
- Local time
- Today, 22:16
- Joined
- Feb 16, 2012
- Messages
- 14
Earlier today I copied a working form to create 2 variations.
It has combo-boxes which requery following the update of another box.
The update event procedure is
and an example of the query is
Whenever I update I see the following error
It has combo-boxes which requery following the update of another box.
The update event procedure is
Code:
Private Sub Division_AfterUpdate()
Me.SalesManager = vbNullString
Me.SalesManager.Requery
Me.CostCentre = vbNullString
Me.CostCentre.Requery
End Sub
Code:
SELECT SaleManagerTable.Initials
FROM SaleManagerTable
WHERE (((SaleManagerTable.Division)=[Forms]![InvAlloBrowseForm]![Division]));
The original form still works, but these 2 copies both show the same error. I've checked the code and queries a dozen times against each other but can't find any reason for it. Any help is much appreciatedThe expression After Update you entered as the event property setting produced the following error: A problem occurred while Microsoft Access was communicating with the OLE server or ActiveX Control