I"m trying to add items to my combobx but it"s not working:
static ArrayList bandlist = new ArrayList();
public addBand()
{
InitializeComponent();
bandlist[0] = "test";
bandlist[1] = "test";
fillComboBox();
}
public void fillComboBox()
{
foreach (string item in bandlist)
{
combo.Text = item;
}
}
Thank you