// ON DOUBLE CLICK SELECT ITEM //------------------------------------------------------------------------------------------------------------ private void dgvListagem_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { //--- check selected item if (dgvListagem.SelectedRows.Count == 0) { AbrirDialog("Favor selecionar um registro para Visualizar...", "Selecionar Registro", DialogType.OK, DialogIcon.Information); return; } objTransfSetor transf = (objTransfSetor)dgvListagem.SelectedRows[0].DataBoundItem; frmTransfSetor frm = new frmTransfSetor(transf, this); frm.ShowDialog(); }
// NOVA TRANSFERENCIA //------------------------------------------------------------------------------------------------------------ private void btnNovaTransferencia_Click(object sender, EventArgs e) { try { // --- Ampulheta ON Cursor.Current = Cursors.WaitCursor; var frm = new frmTransfSetor(new objTransfSetor(null), this); frm.ShowDialog(); ObterDados(); } catch (Exception ex) { AbrirDialog("Uma exceção ocorreu ao Abrir formulário de nova transferência..." + "\n" + ex.Message, "Exceção", DialogType.OK, DialogIcon.Exclamation); } finally { // --- Ampulheta OFF Cursor.Current = Cursors.Default; } }