Home All Groups Group Topic Archive Search About
Author
19 May 2006 10:35 PM
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

Author
20 May 2006 9:05 AM
Cerebrus
Author
16 Jul 2006 12:44 PM
naraby
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....

Show quoteHide quote
"Jose" wrote:

> How make a combobox with two values separed with columns?. For example:
>
> C0 Codigo 0
> C1 Codigo 1
> C2 Codigo 2
>
> Thanks a lot
>
>
>