private void btn_Zmazat_Vozidlo_Click(object sender, EventArgs e)
        {
            SqlConnection MyConn = new SqlConnection(pripojenie);

            MyConn.Open();
            string delete = "delete from Vozidlo where ID_Vozidlo='" + cb_ID_Vozidlo.Text + "'";

            sql = new SqlCommand(delete, MyConn);
            sql.ExecuteNonQuery();
            ds_Vozidlo.Tables["Vozidlo"].Clear();
            MyAdapter4.Fill(ds_Vozidlo, "Vozidlo");
            dgw_Vozidlo.DataSource = ds_Vozidlo.Tables["Vozidlo"];
        }
        private void btn_Pridaj_Vozidlo_Click(object sender, EventArgs e)
        {
            SqlConnection MyConn = new SqlConnection(pripojenie);

            MyConn.Open();
            string insert = "insert into Vozidlo(ID_Vozidlo,SPZ,Typ,Znacka,Cena,Uzivatel_Username) values (next value for sekVozidlo,'" + tb_SPZ.Text + "','" + cb_Typ_Vozidla.Text + "','" + tb_Znacka.Text + "','" + tb_Cena_Vozidla.Text + "','" + cb_Vozidlo_Username.Text + "') ";

            sql = new SqlCommand(insert, MyConn);
            sql.ExecuteNonQuery();
            ds_Vozidlo.Tables["Vozidlo"].Clear();
            MyAdapter4.Fill(ds_Vozidlo, "Vozidlo");
            dgw_Vozidlo.DataSource = ds_Vozidlo.Tables["Vozidlo"];
        }
        private void btn_Editovat_Vozidlo_Click(object sender, EventArgs e)
        {
            SqlConnection MyConn = new SqlConnection(pripojenie);

            MyConn.Open();
            string update = "UPDATE Vozidlo SET SPZ = '" + tb_SPZ.Text + "', " +
                            "Typ = '" + cb_Typ_Vozidla.Text + "', " +
                            "Znacka = '" + tb_Znacka.Text + "', " +
                            "Cena = '" + tb_Cena_Vozidla.Text + "', " +
                            "Uzivatel_Username = '******' WHERE ID_Vozidlo =  '" + cb_ID_Vozidlo.Text + "'";

            sql = new SqlCommand(update, MyConn);
            sql.ExecuteNonQuery();
            ds_Vozidlo.Tables["Vozidlo"].Clear();
            MyAdapter4.Fill(ds_Vozidlo, "Vozidlo");
            dgw_Vozidlo.DataSource = ds_Vozidlo.Tables["Vozidlo"];
        }