J
Jenny
Hi,
I would be like to be able to have my form automatically
go to a particular record when I click a row in a combo
box. I used the following code in the AfterUpdate event
of the Combo box, but nothing happens when I click chose
a row from the combo box. Can anyone tell me why or what
I should do? Thanks, Jenny
Private Sub Combo44_AfterUpdate()
'Move to the record selected in the control
Me.RecordsetClone.FindFirst "[MID] = " & Me![Combo44]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
I would be like to be able to have my form automatically
go to a particular record when I click a row in a combo
box. I used the following code in the AfterUpdate event
of the Combo box, but nothing happens when I click chose
a row from the combo box. Can anyone tell me why or what
I should do? Thanks, Jenny
Private Sub Combo44_AfterUpdate()
'Move to the record selected in the control
Me.RecordsetClone.FindFirst "[MID] = " & Me![Combo44]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub