Retrieve value from Combo box

prao

Registered User.
Local time
Today, 03:56
Joined
Apr 16, 2001
Messages
32
Can somebody help me with this. I have a combo box in a form and it has 2 columns (cust_id and customer_name). The combo box will display only the customer name.
The 2 columns are not bound to any column in the form. When user selects a value from the combo box, I need to populated a temporary text box with the cust id and customer name of the selected row.
 
To use the value for some other calculations.

Thanks
 
Set column count to two on the controls property sheet, set column widths to 1;2.5 both columns should now display, to use either in an expression [comboname].Column(0)
where column 0 is the first column
 
Thanks for the solution. I will try it out.
 

Users who are viewing this thread

Back
Top Bottom