CadDesigner
Programmer
Hi all,
I am having an error message I can't place/ solve:
To find a record and display it on the form, I did exactly what was stated in MS -help article Q287658 (or explaned on
The moment I choose the desired record, the system comes back with the error:
"The expression After Update you entered as the event property setting produced the following error: A problem occured while 'Maintenance list' was communicating with the OLE server or activeX control.
* The expression may not result in the name of the macro, the name of a user-defined function, or [Event Procedure].
* There may have been an error evaluating the function, event, or macro."
('Maintenance list' is the name of my program)
I checked that the wizard created the sub combobox_AfterUpdate routine, the combobox was unbound and the AfterUpdate-event was listed in the properties of the combobox.
Private Sub Combo180_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[index] = " & Str(Me![Combo180])
Me.Bookmark = rs.Bookmark
End Sub
Any help / Idea's how to solve this will be greatly appreciated!!
Paul
I am having an error message I can't place/ solve:
To find a record and display it on the form, I did exactly what was stated in MS -help article Q287658 (or explaned on
The moment I choose the desired record, the system comes back with the error:
"The expression After Update you entered as the event property setting produced the following error: A problem occured while 'Maintenance list' was communicating with the OLE server or activeX control.
* The expression may not result in the name of the macro, the name of a user-defined function, or [Event Procedure].
* There may have been an error evaluating the function, event, or macro."
('Maintenance list' is the name of my program)
I checked that the wizard created the sub combobox_AfterUpdate routine, the combobox was unbound and the AfterUpdate-event was listed in the properties of the combobox.
Private Sub Combo180_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[index] = " & Str(Me![Combo180])
Me.Bookmark = rs.Bookmark
End Sub
Any help / Idea's how to solve this will be greatly appreciated!!
Paul