Binding to a CheckBoxList

Posts   
 
    
Stephan
User
Posts: 63
Joined: 16-Jan-2007
# Posted on: 24-Sep-2007 15:08:48   

Hi, can anyone tell me how I can bind a collection to a windowsforms CheckboxList.

I have a collection and use a foreach to add items to a checkboxlist, but I'missing something I guess.


 foreach (IncidentPlaatsEntity _incidentPlaats in _incidentPlaatsCollection)
                {
                    cblIncidentPlaats.Items.Add(_incidentPlaats);
                }

_incidentPlaats is an Entity all I see on the screen is Libra.Data.EntityClasses.IncidentPlaatsEntity.

Oeps, vergeten de veldnaam toe te voegen. Dat was het probleem.

TIA