Connecting Tech Pros Worldwide Help | Site Map

combobox two values

Jose
Guest
 
Posts: n/a
#1: May 19 '06
How make a combobox with two values separed with columns?. For example:

C0 Codigo 0
C1 Codigo 1
C2 Codigo 2

Thanks a lot


Cerebrus
Guest
 
Posts: n/a
#2: May 20 '06

re: combobox two values


See <URL:http://www.codeproject.com/vb/net/multicolumncombo.asp>

naraby
Guest
 
Posts: n/a
#3: Jul 16 '06

re: combobox two values


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

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