R
RP
I have a combo box and I am filling Employee Codes in it. I want to
retrieve employee first and last name when a user selects an employee
code from the combo box. Though it very easy with a single SQL Query,
I want to know if there is any other way to get this. I mean if I use
following query:
Select EmpCode, FirstName, LastName from <Table Name>
and use column(o) to fill the combo box. Can I store other values as
well in combo box to retrieve them when the user selects a code.
retrieve employee first and last name when a user selects an employee
code from the combo box. Though it very easy with a single SQL Query,
I want to know if there is any other way to get this. I mean if I use
following query:
Select EmpCode, FirstName, LastName from <Table Name>
and use column(o) to fill the combo box. Can I store other values as
well in combo box to retrieve them when the user selects a code.