Then if you are using a "bound" form, use the combo's
AfterUpdate event to:
Me.SomeControl = Me.MyCombo.Column(1) ' Assign value of b
Me.SomeControl = Me.MyCombo.Column(2) ' Assign value of c
Otherwise, you'd do an insert:
Code:
Dim dbs As DataBase
Dim sql As String
Set dbs = CurrentDb
sql = "Insert into OtherTable (b, c) " & _
"Values ('" & Me.MyCombo.Column(1) & "', '" & _
Me.MyCombo.Column(2) & "')"
dbs.Execute(sql)