private void driver2InfoBtn_Click(object sender, EventArgs e) { using (DriverInfoForm frm = new DriverInfoForm(loct.driver3)) { frm.ShowDialog(); } }
private void driversDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e) { //23.24 int id = Convert.ToInt32(driversDataGridView.CurrentRow.Cells[0].Value); if (e.ColumnIndex == 23) { // Info driver locd = context.drivers.Find(id); using (DriverInfoForm frm = new DriverInfoForm(locd)) { frm.ShowDialog(); } } if (e.ColumnIndex == 24) { if (loggedUser == "Admin") { //Edit driver locd = context.drivers.Find(id); using (DriverEditForm frm = new DriverEditForm(locd)) { if (frm.ShowDialog() == DialogResult.OK) { if (dbm.EditDriver(id, frm.familyNameTextBox.Text, frm.nameTextBox.Text, frm.countryTextBox.Text, Convert.ToDateTime(frm.birthTextBox.Text), Convert.ToInt32(frm.podiumsTextBox.Text), Convert.ToInt32(frm.experienceTextBox.Text), Convert.ToInt32(frm.trophiesTextBox.Text), Convert.ToInt32(frm.numberTextBox.Text), Convert.ToInt32(frm.pointsTextBox.Text))) { MessageBox.Show("OK", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Error", "Info", MessageBoxButtons.OK, MessageBoxIcon.Error); } driversDataGridView.DataSource = context.drivers.ToList(); } } } else { MessageBox.Show("Access Denied", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } if (e.ColumnIndex == 25) { if (loggedUser == "Admin") { //Delete if (dbm.DeleteDriver(id)) { MessageBox.Show("OK", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Error", "Info", MessageBoxButtons.OK, MessageBoxIcon.Error); } driversDataGridView.DataSource = context.drivers.ToList(); } else { MessageBox.Show("Access Denied", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }