private void btnNuevoUser_Click(object sender, EventArgs e) { using (CreacionUsuario ventanaCreacion = new CreacionUsuario(this, "3", InfoUsuario.rolUsuario == 1)) { if (ventanaCreacion.ShowDialog() == DialogResult.OK) { textIdUsuario.Text = ventanaCreacion.nombreIngresado; textIdUsuario.ReadOnly = true; btnNuevoUser.Hide(); txtNoTieneUser.Hide(); } } }
private void button1_Click(object sender, EventArgs e) { using (CreacionUsuario ventanaCreacion = new CreacionUsuario(this, "4", InfoUsuario.rolUsuario == 1)) { if (ventanaCreacion.ShowDialog() == DialogResult.OK) { textBox1.Text = ventanaCreacion.nombreIngresado; textBox1.ReadOnly = true; button1.Hide(); textBox2.Hide(); } } }