private void dataGridView1_DoubleClick(object sender, EventArgs e) { FormNovoLiceRelacija f1 = new FormNovoLiceRelacija(int.Parse(dataGridView1.CurrentRow.Cells["sif"].Value.ToString()), int.Parse(dataGridView1.CurrentRow.Cells["id"].Value.ToString()), int.Parse(dataGridView1.CurrentRow.Cells["sifra_relacije"].Value.ToString())); f1.ShowDialog(); ucitaj(); }
private void btnDodaj_Click(object sender, EventArgs e) { FormNovoLiceRelacija f1 = new FormNovoLiceRelacija(); f1.ShowDialog(); ucitaj(); }