private void comboBoxCompanyies_SelectedIndexChanged(object sender, EventArgs e) { string nameOfCompany = comboBoxCompanies.SelectedItem.ToString(); comboBoxPosts.Items.Clear(); comboBoxPosts.Items.AddRange(_qt.GetDirectoryPostNames(nameOfCompany).ToArray()); }