imterpsfan3
Programmer
I'm looking for a way to bind a combo box to a hash table or dictionary class. I'm basically trying to load a combo box with unbound data from a datareader.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private void button1_Click(object sender, System.EventArgs e)
{
cbo.BeginUpdate();
for(int i = 0;i <5000;i++)
{
cbo.Items.Add(new DictionaryEntry(i.ToString(),i.ToString()));
}
cbo.EndUpdate();
cbo.DisplayMember = "Value";
cbo.ValueMember = "Key";
}