I have a combo box
in my form
which I filled from another table role
.role
has two columns : Id
and Role
Given my table in Row Source
and Bound Column
value as 2 and column widths
as 0cm;2cm
I can see my Role
in combo box which is fine. What I need is
- On
Submit
, I want to read theId
value inVBA
for theRole
selected. How to achieve this -- Resolved it by setting Bound Column value as 1 - How to set Default Value as one of the
Role
-- Help to make this happen
I have to set similar case for my ListBox
in same form