private void ReSaveAndOpen_Strip_Click(object sender, EventArgs e) { if (Protoks_Grid.CurrentCell != null) { Misc.OtchProtokol(Protokols[Protoks_Grid.CurrentCell.RowIndex], true); } }
private void Protoks_Grid_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex > -1 && e.RowIndex > -1 && e.ColumnIndex != Columns.Time) { Misc.OtchProtokol(Protokols[e.RowIndex], false); } }