Beispiel #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            City city = new City();

            city.Name        = textBox1.Text;
            city.CountryCode = comboBox1.Text;
            city.District    = textBox2.Text;
            city.Population  = double.Parse(textBox3.Text);

            int arv = CountryDB.InsertNewCity(city);

            if (arv != 0)
            {
                MessageBox.Show("Oli lisatud " + arv + " rida", "Valmis", MessageBoxButtons.OK, MessageBoxIcon.Information);
                Form1 frm = new Form1();
                frm.Refresh();
            }
            else
            {
                MessageBox.Show("Lisamine ebaõnnestus", "Viga", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }