I have a combo box I am using to fill bound text fields but for some reason it is only filling the first 2 text fields. Here is my code not sure what the issue is. I have modified it many times and cannot get it to poplulate the other fields.

Private Sub ccbo_AfterUpdate()
Me.Customer.Value = Me.ccbo.Column(1)
Me.Billing_Address.Value = Me.ccbo.Column(2)
Me.City.Value = Me.ccbo.Column(3)


Me.State.Value = Me.ccbo.Column(4)
Me.Zip_Code.Value = Me.ccbo.Column(5)
Me.Contact.Value = Me.ccbo.Column(6)
Me.Phone_1.Value = Me.ccbo.Column(7)
Me.Phone_2.Value = Me.ccbo.Column(8)
Me.Fax.Value = Me.ccbo.Column(9)
Me.Other.Value = Me.ccbo.Column(10)

End Sub

Thanks,