
Originally Posted by
Johnb
Seems like it should be simple, except when I change records, the name of the organization in the 2nd field copies to the name of the organization in the first field...
If you are trying to change records using the "name of the organization" combo box (which is probably bound), you would be changing the name of the organization of the current record, NOT changing to a different record.
If you want to change to a different record using a combo box, the combo box would need to be unbound.
The code in the after update event of the combo box would look something like
Code:
'****** Code Start *********
'Move to the record selected in the control
Me.RecordsetClone.Findfirst "[ID] = " & Me![ComboOrListboxName]
Me.Bookmark = Me.RecordSetClone.Bookmark
'******* Code End *********
http://theaccessweb.com/forms/frm0005.htm
Maybe you would post your code? Or your dB?