예제 #1
0
        private void kocelist_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (kocelist.SelectedIndex == -1)
            {
                MessageBox.Show("Izberite koco!");
            }
            else
            {
                koca a = koce[kocelist.SelectedIndex];

                kocapage koca = new kocapage(a);
                koca.Show();
            }
        }
예제 #2
0
        private void change_Click(object sender, EventArgs e)
        {
            using (NpgsqlConnection con = new NpgsqlConnection("Server=rogue.db.elephantsql.com; User Id=clhpojwc;" + "Password=wm7N_asXtodPaLSASbaFBEAcB1MtcKMU; Database=clhpojwc;"))
            {
                con.Open();
                NpgsqlCommand com = new NpgsqlCommand("SELECT updatekoca('" + ime_text.Text + "', '" + opis_text.Text + "'," + nadmorska_text.Text + ", '" + gora_combo.SelectedItem + "', '" + ime_koce + "');", con);

                com.ExecuteNonQuery();
                con.Close();
            }

            this.Hide();

            kocapage koca = new kocapage(takoca);

            koca.Show();
        }