private void button1_Click(object sender, EventArgs e) { if (podcastListview.SelectedItems.Count > 0) { if (Validering.CheckIfComboboxIsEmpty(comboBoxUpdateInterval) || Validering.CheckIfComboboxIsEmpty(categoryCombobox)) { PodcastHandler.updatePodcast(categoryCombobox.Text, Int32.Parse(comboBoxUpdateInterval.Text.Substring(0, 2).Trim()), podcastListview.SelectedItems[0].Text); podcastListview = PodcastHandler.updatePodcastListview(podcastListview); } } else { MessageBox.Show("Vänligen välj en podcast att ändra"); } }