private void Edit() { try { Cursor = Cursors.WaitCursor; if (gridView1.RowCount > 0) { var item = usuariosBindingSource.Current as Usuarios; if (item != null) { using (var detalhes = new frmUsuariosAdd(item)) { detalhes.ShowDialog(); } } } else { MessageBox.Show("Impossivel passar valores quando a tabela encontra-se vazia", "Erro Tabela Vazia", MessageBoxButtons.OK, MessageBoxIcon.Error); } } catch (System.Exception exe) { MessageBox.Show("Erro ao passar Dados" + exe.Message, "Erro de Dados", MessageBoxButtons.OK, MessageBoxIcon.Error); } finally { Cursor = Cursors.Default; } }
private void BtnNovos_Click(object sender, System.EventArgs e) { using (var frm = new frmUsuariosAdd("Usuarios: (Adicionar)", 0)) { var result = frm.ShowDialog(); if (result == DialogResult.OK) { ListGeral(); } } }