Navigating with bookmarks (1 Viewer)

JRRyan

New member
Local time
Today, 05:43
Joined
Aug 26, 2004
Messages
8
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?
 
Use the combo box Wizard, it'll create the code for you, and please don't double post
 
OK I've found a system with the wizards available and the como box wizard does not build this for me. It simply build the combo box, no option for record operations.
 
Last edited:
Are you talking cascading combo box? Whatever you select from a combo box you want that record to be displayed?

Michael
 
JRRyan said:
OK I've found a system with the wizards available and the como box wizard does not build this for me. It simply build the combo box, no option for record operations.
Select, find a record on my form, from the list of available options
 

Users who are viewing this thread

Back
Top Bottom