When writing code in Access 97, I would use the code below, using the event "After Update" in my Combo Box and it worked very well.
I wrote the same code in Access 2000 and it creates an error.
What is the code for Access 2000 to do the same thing.
I would appreciate any help.
Sub Combo28_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ID] = " & Me![Combo28]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
kevsim
I wrote the same code in Access 2000 and it creates an error.
What is the code for Access 2000 to do the same thing.
I would appreciate any help.
Sub Combo28_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ID] = " & Me![Combo28]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
kevsim