J
Jerry
Hi,
I have a form bound to a table 'Customers' with a combo box
(cboCustomerName) for the CustomerName field and text boxes for the other
fields in each customer record. What I want to be able to do is to select
the name of a customer in cboCustomerName and have the form find that
customer's information. cboCustomerName's control source is
Customers.CustomerName, bound column is 2 (CustomerName), and column count
is 2 so it pulls CustomerID and CustomerName. The AfterUpdate event handler
has this in it:
Private Sub cboCustomerName_AfterUpdate()
'Move to the record selected in the control
Me.RecordsetClone.Findfirst "[CustomerID] = " &
Me![cboCustomerName].Column(0)
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
This works fine to find the record, but it has the side effect of putting
the name of the customer being found in the record of the customer that was
current when the action was initiated. Is there a way to prevent the record
I'm leaving from being altered by the selection in the combo box?
I have a form bound to a table 'Customers' with a combo box
(cboCustomerName) for the CustomerName field and text boxes for the other
fields in each customer record. What I want to be able to do is to select
the name of a customer in cboCustomerName and have the form find that
customer's information. cboCustomerName's control source is
Customers.CustomerName, bound column is 2 (CustomerName), and column count
is 2 so it pulls CustomerID and CustomerName. The AfterUpdate event handler
has this in it:
Private Sub cboCustomerName_AfterUpdate()
'Move to the record selected in the control
Me.RecordsetClone.Findfirst "[CustomerID] = " &
Me![cboCustomerName].Column(0)
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
This works fine to find the record, but it has the side effect of putting
the name of the customer being found in the record of the customer that was
current when the action was initiated. Is there a way to prevent the record
I'm leaving from being altered by the selection in the combo box?