Hi Vish.
Are you working in C# 2.0? If so, its recommended to use generic Lists in rather than the non-generic ArrayList.
The following code should help:
Code:
List<string> items = new List<string>();
// populate list
// to remove...
// Get listIndex from DropDown and remove the Item.
int idx = comboBox1.SelectedIndex;
items.RemoveAt(idx);
Note that you are not updating the data here!
Rob
The Developing Developer
Currently Working Towards:
MCAD C#
My Blog: http://robzyc.spaces.live.com