Esempio n. 1
0
        private void buttonPodcast_Click(object sender, EventArgs e)
        {
            String title     = textBoxName.Text;
            String url       = textBoxUrl.Text;
            String category  = textBoxCat.Text;
            int    intervall = Convert.ToInt32(numericUpDownFrekvens.Value);
            int    v         = 0;

            String[] arrayOfText = { title, url, category };


            Validator val = new Validator();

            foreach (String s in arrayOfText)
            {
                if (val.ValidateTextBoxNotEmpty(s) == true)
                {
                    v++;
                }
            }
            if (v == 3)
            {
                pc.createPodcast(title, url, category, intervall, 0);// 0 för att den skapar ett nytt objekt
                MessageBox.Show("Sucsess Title=" + title + " Category=" + category + " Url=" + url + " Intervall=" + intervall);
            }
            else
            {
                MessageBox.Show("Saknar värde i något av fälten.");
            }

            refreshData();
        }