Okay i have the following in a combo box called cmbzip on a form call frmMember
SELECT tblCityStateZip.Zip, tblCityStateZip.City, tblCityStateZip.State
FROM tblCityStateZip;
In the after update event i have the following
Private Sub cmbZip_AfterUpdate()
Me.txtCity = Me.cmbZip.Column(1)...