Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Binding a combo box to hash table or dictionary class

Status
Not open for further replies.

imterpsfan3

Programmer
Jul 22, 2005
160
US
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.
 
That link is dealing with text boxes. What I'm trying to do is BIND a combo box to a hash table or a dictionary class.
 
Did you go down the page? to the accepted answer,he is using a combo box:)
 
Thanks,
I just did something simple like this. There are much more sophisticated ways of doing this but this seems to require less memory and is faster using a dictionaryentry. For loading database data, I'll just loop through the data reader instead of this for loop.

Code:
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";
			
			
			
		}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top