There's an error saying that the combobox is already b, inded to a datasource, thus cannot add new items.
This is how I populate my combobox
cmd = new SqlCommand();
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "usp_distinctevent";
cmd.Connection = con;
da = new SqlDataAdapter();
da.SelectCommand = cmd;
ds = new DataSet();
da.Fill(ds, "tblVisitorVisit");
purposecb.DisplayMember = "eventName";
purposecb.ValueMember = "visitorVisitID";
purposecb.DataSource = ds.Tables["tblVisitorVisit"];