private void nazajbutton_Click(object sender, EventArgs e) { clanipodatki cp = new clanipodatki(id); cp.Show(); this.Close(); }
private void usersgrid_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == 4) { int id = Convert.ToInt32(usersgrid.Rows[e.RowIndex].Cells[5].Value); clanipodatki cp = new clanipodatki(id); cp.Show(); this.Close(); } }