Exemple #1
0
        public void Editar()
        {
            frmUpdUsu f3 = new frmUpdUsu(u);

            this.Hide();
            f3.ShowDialog();
        }
Exemple #2
0
        void Dgv_usuariosCellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            Usuarios u = new Usuarios();

            u.setId(Convert.ToInt32(dgv_usuarios.Rows[e.RowIndex].Cells[0].Value));
            u.setNome(Convert.ToString(dgv_usuarios.Rows[e.RowIndex].Cells[1].Value));
            u.setLogin(Convert.ToString(dgv_usuarios.Rows[e.RowIndex].Cells[2].Value));

            frmUpdUsu f3 = new frmUpdUsu(u);

            this.Hide();
            f3.ShowDialog();
        }