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}});
}