private void knjigegrid_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == 6) { int id = Convert.ToInt32(knjigegrid.Rows[e.RowIndex].Cells[0].Value); podatkioknjigi pod = new podatkioknjigi(id); pod.Show(); this.Close(); } }
private void usersGridView_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == 4) { int id_u = Convert.ToInt32(usersGridView.Rows[e.RowIndex].Cells[5].Value); bool neki = baza.RentABook(id_u, id_b, 0); if (neki) { MessageBox.Show("Knjiga uspešno dodana!"); podatkioknjigi pod = new podatkioknjigi(id_b); pod.Show(); this.Close(); } } }