J
JL
Since you alread have a multi-cloumn combo box.
You can trigger an "After Update" event to fill in all the
form fields that can be fill in with the combo box.
After Update event:
sub fields_After_Update ()
..
..
..
me![Field1onForm] = me![combobox].column(0)
me![Field2onForm] = me![combobox].column(1)
..
..
..
end sub
Note: The first column in the combo box is 0.
You can trigger an "After Update" event to fill in all the
form fields that can be fill in with the combo box.
After Update event:
sub fields_After_Update ()
..
..
..
me![Field1onForm] = me![combobox].column(0)
me![Field2onForm] = me![combobox].column(1)
..
..
..
end sub
Note: The first column in the combo box is 0.