combobox two values

  • Thread starter Thread starter Jose
  • Start date Start date
J

Jose

How make a combobox with two values separed with columns?. For example:

C0 Codigo 0
C1 Codigo 1
C2 Codigo 2

Thanks a lot
 
It is so simple:
make new select query where you have the first identity column then a joint
column
example if you want to select the product id as an identituy column and the
product id and the name as description:
Select ProdcutID, cast(ProductId as varchar(10)) + ProductName From Products
(MSSQL)
if you need another language..tell me
Use this select to populate your combo box....
 
Back
Top