B
badabing
Guest
In Access 97, I've got a form that's bound to a table. On the form, I can display previously entered data by use of a list box. I also have a command button for adding a new record. However, after entering a new record, if I want to then choose a previously existing record from the list box, I get a message:
"Run time error '2105': You can't go to the specified record"
In the OnClick event of my list box, I'm using the following code:
Me.RecordsetClone.FindFirst "[SessionID] = " & Me![lstSessions]
Me.Bookmark = Me.RecordsetClone.Bookmark
Can anyone offer advice on what I have to do to get around this type of error? Thank you.....
"Run time error '2105': You can't go to the specified record"
In the OnClick event of my list box, I'm using the following code:
Me.RecordsetClone.FindFirst "[SessionID] = " & Me![lstSessions]
Me.Bookmark = Me.RecordsetClone.Bookmark
Can anyone offer advice on what I have to do to get around this type of error? Thank you.....