vote up 1 vote down star

In vb.net / winforms, how can a hashtable be bound to a drop down list or any other datasource-driven control?

flag

If it makes any difference, I'm really using a System.Windows.Forms.Combobox, with the DropDownList drop down style. – Jeffrey Nov 18 '08 at 14:58

3 Answers

vote up 1 vote down check

Is this winforms, wpf, or asp.net? [update: ahh... winforms ;-p]

winforms wants data to be IList (or, indirectly, via IListSource) - so I'm guessing (from the comment) that you are using winforms. None of the inbuilt dictionary-like collections implement IList, but to be honest it doesn't matter: if you are data-binding, the volume is probably fairly small, so a regular list should be fine.

The best option is something like a List<T> or BindingList<T>, where T has all the properties you want to bind to. Is this an option? If you are stuck with 1.1 (since you mention HashTable rather than Dictionary<,>), then use ArrayList.

Example (in C#):

class MyData
{
    public int Key { get; set; }
    public string Text { get; set; }
}
[STAThread]
static void Main()
{
    var data = new List<MyData>
    {
        new MyData { Key = 1, Text = "abc"},
        new MyData { Key = 2, Text = "def"},
        new MyData { Key = 3, Text = "ghi"},
    };
    ComboBox cbo = new ComboBox
    {
            DataSource = data,
            DisplayMember = "Text",
            ValueMember = "Key"
    };
    cbo.SelectedValueChanged += delegate {
        Debug.WriteLine(cbo.SelectedValue);
    };
    Application.Run(new Form {Controls = {cbo}});
}
link|flag
You're absolutely right - it is a winforms project. I didn't realize there would be such a difference. Many thanks. – Jeffrey Nov 18 '08 at 15:59
vote up 0 vote down
myCtrl.DataSource = myHashtable
myCtrl.DataBind()

Example source of bindable control:

<itemtemplate>
    <%# DataBinder.Eval(Container.DataItem, "Key", "<td>{0}</td>") %>
    <%# DataBinder.Eval(Container.DataItem, "Value", "<td>${0:f2}</td>") %>
</itemtemplate>

-Oisin

link|flag
vote up 2 vote down

Just use the dropdown lists's Datasource property

   DropDownList dd = new DropDownList();
   Hashtable mycountries = New Hashtable();
   mycountries.Add("N","Norway");
   mycountries.Add("S","Sweden");
   mycountries.Add("F","France");
   mycountries.Add("I","Italy");
   dd.DataSource=mycountries;
   dd.DataValueField="Key";
   dd.DataTextField="Value";
   dd.DataBind();
link|flag
This for whatever reason is giving me this error: "Complex DataBinding accepts as a data source either an IList or an IListSource." – Jeffrey Nov 18 '08 at 14:51
I'm not sure why this would be happening.. is the exception being thrown by the DataBind() line ? – Charles Bretana Nov 18 '08 at 15:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.