Hi there, I'm new to the forum but it seems as if there's a lot of help available here.
I'm trying to use a combobox to navigate the records in an uneditable form based on a query. I'm using the following code (many of you may recognise it):
Private Sub Text33_AfterUpdate()
On Error GoTo Err_Text33_AfterUpdate
DoCmd.SetWarnings False
Me.RecordsetClone.Findfirst "[ID] = " & Me![Text33]
Me.Bookmark = Me.RecordsetClone.Bookmark
DoCmd.SetWarnings True
Exit_Text33_AfterUpdate:
Exit Sub
Err_Text33_AfterUpdate:
MsgBox Err.Description
Resume Exit_Text33_AfterUpdate
End Sub
I'm not getting any response from this, and when I used a standard table instead of a query the field would change its value before moving to the cloned record.
Any help?
I'm trying to use a combobox to navigate the records in an uneditable form based on a query. I'm using the following code (many of you may recognise it):
Private Sub Text33_AfterUpdate()
On Error GoTo Err_Text33_AfterUpdate
DoCmd.SetWarnings False
Me.RecordsetClone.Findfirst "[ID] = " & Me![Text33]
Me.Bookmark = Me.RecordsetClone.Bookmark
DoCmd.SetWarnings True
Exit_Text33_AfterUpdate:
Exit Sub
Err_Text33_AfterUpdate:
MsgBox Err.Description
Resume Exit_Text33_AfterUpdate
End Sub
I'm not getting any response from this, and when I used a standard table instead of a query the field would change its value before moving to the cloned record.
Any help?