How to bind data to CheckedListBox ?

kak.mca

New member
Joined
Jan 28, 2008
Messages
3
Programming Experience
Beginner
Hi Good morning to all.
I'm new bie to VB.NET.

Can anyone please tell me how to:

Bind data to CheckedLIstBox control

I have the following requirement.
Table name trade_data(tradesourceid int, Description varchar(100))
Here:
-----
tradesourceid: int primary key
Description: Description about the trade.

example:
trade_data(tradesourceid, Description)
trade_data(1,'Global Tech')
trade_data(2,'Indian Bull')
trade_data(3,'Golden way')

Now, I want to Bind above data to CheckedListBox. I want "Description" to appear as the list. When I select one checkbox, it's corresponding "tradesourceid" should be returned.

Can any one please tell me how to do?
 
Back
Top