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....