Hi, I'm having problems getting my combo boxes to work.
I add records, but when I type in the name of a record and hit enter, I keep getting this error message:
"the microsoft access database engine does not recognize 'ID' as a valid field name or expression"
It then offers the end or debug option.
In the visual basic, this is what has worked for other forms, but won't work for this one:
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![Combo28])
Me.Bookmark = rs.Bookmark
any ideas? Thanks!
I add records, but when I type in the name of a record and hit enter, I keep getting this error message:
"the microsoft access database engine does not recognize 'ID' as a valid field name or expression"
It then offers the end or debug option.
In the visual basic, this is what has worked for other forms, but won't work for this one:
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![Combo28])
Me.Bookmark = rs.Bookmark
any ideas? Thanks!