private void DataGriewSearch_KeyDown(object sender, KeyEventArgs e) { if (LIS_RESERVAColl.Count > 0) { if (e.KeyCode == Keys.Enter) { //Obter a linha da célula selecionada DataGridViewRow linhaAtual = DataGriewSearch.CurrentRow; //Exibir o índice da linha atual int indice = linhaAtual.Index; Result = Convert.ToInt32(LIS_RESERVAColl[indice].IDRESERVA); this.Close(); } else if ((Control.ModifierKeys == Keys.Control) && (e.KeyCode == Keys.D)) { using (FrmReserva2 FrmCliente = new FrmReserva2()) { int linha = DataGriewSearch.CurrentRow.Index; //PEGA LINHA SELECIONADA FrmCliente.ShowDialog(); } } } }
private void btnCadFornecedor_Click(object sender, EventArgs e) { FrmReserva2 Frm = new FrmReserva2(); Frm.ShowDialog(); }