Please someone, help relieve the headache I've got with this problem!
Ok. I have three fields [ID],[Area],[Equipment]
The problem is that there are many areas with the same equipment.
Im listing all three in a list box on a form and would like to be able to click on the list to move to that RecordID so I can Edit,Delete or add new. I've used bookmarks, but they only seem to remember the one I've selected and Not moving to the record.
Could someone enlighten me as to how Im suppose to be go about this?
Ive tried
but this won't search the autonumber field for ID.
Many Thanks
Richard
Ok. I have three fields [ID],[Area],[Equipment]
The problem is that there are many areas with the same equipment.
Im listing all three in a list box on a form and would like to be able to click on the list to move to that RecordID so I can Edit,Delete or add new. I've used bookmarks, but they only seem to remember the one I've selected and Not moving to the record.
Could someone enlighten me as to how Im suppose to be go about this?
Ive tried
Code:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Equipment] = '" & Me![List0] & "'"
Me.Bookmark = rs.Bookmark
Many Thanks
Richard