private void dataGridViewPeople_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e) { if (select > 0) { Int32 idPerson = Convert.ToInt32(dataGridViewPeople.Rows[dataGridViewPeople.SelectedCells[0].RowIndex].Cells[0].Value); select = idPerson; Close(); } else { Int32 idPerson = Convert.ToInt32(dataGridViewPeople.Rows[dataGridViewPeople.SelectedCells[0].RowIndex].Cells[0].Value); FormShowPerson formSP = new FormShowPerson(connection, idPerson); formSP.Show(); } }
private void PersonToolStripMenuItem_Click(object sender, EventArgs e) { Int32 idPerson = -1; Int32 idObject = Convert.ToInt32(dataGridViewObjects.Rows[dataGridViewObjects.SelectedCells[0].RowIndex].Cells[0].Value); connection.Open(); String cmd = "SELECT [idUSERS] FROM [OBJECTS] WHERE [idOBJECT] = " + idObject.ToString() + ";"; SqlCommand query_ = new SqlCommand(cmd, connection); idPerson = Convert.ToInt32(query_.ExecuteScalar()); connection.Close(); FormShowPerson formSP = new FormShowPerson(connection, idPerson); formSP.Show(); }
private void dataGridViewPeople_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e) { //В зависимости от режима, делаем разные вещи if (select > 0) { //Если выбираем, то просто сохраняем id человека в переменную Int32 idPerson = Convert.ToInt32(dataGridViewPeople.Rows[dataGridViewPeople.SelectedCells[0].RowIndex].Cells[0].Value); select = idPerson; Close(); } else { //Если не выбираем, то просто открываем новое окошко, где можно подробнее рассмотреть человека Int32 idPerson = Convert.ToInt32(dataGridViewPeople.Rows[dataGridViewPeople.SelectedCells[0].RowIndex].Cells[0].Value); //Создали новую формочку, передали через конструктор не только соединение, но и id человека, чтобы сразу знать, кого показывать FormShowPerson formSP = new FormShowPerson(connection, idPerson); formSP.Show(); } }