M
Mac
I have an application that has been running great in
Access 2002. When I open it in Access 2003 it takes away
one of the critical features I had. Namely on a subform I
had a combo box with a drop down list that allowed a user
to go directly to the another record without having to
scroll through all of the records. The code is fairly
simple and is given below. When I open the db in 2003, I
no longer can use the combo box, in fact if I go and look
at the code for that procedure it has been eliminated.
How do I go about changing the code so that I can have a
similar feature as before. Here is the code:
Private Sub Combo28_Afterupdate()
Dim rs as Object
Me.Refresh
Set re= "[Id] = '"& Me![Combo28]& "'"
If Not re.eof Then Me.bookmark = rs.Bookmark
End Sub
How can I make this work. Jack
Access 2002. When I open it in Access 2003 it takes away
one of the critical features I had. Namely on a subform I
had a combo box with a drop down list that allowed a user
to go directly to the another record without having to
scroll through all of the records. The code is fairly
simple and is given below. When I open the db in 2003, I
no longer can use the combo box, in fact if I go and look
at the code for that procedure it has been eliminated.
How do I go about changing the code so that I can have a
similar feature as before. Here is the code:
Private Sub Combo28_Afterupdate()
Dim rs as Object
Me.Refresh
Set re= "[Id] = '"& Me![Combo28]& "'"
If Not re.eof Then Me.bookmark = rs.Bookmark
End Sub
How can I make this work. Jack