private void btnContinuar_Click(object sender, EventArgs e) { if (Vacio.txb(this)) { if (Vacio.cmb(this)) { string cn = txbCon.Text; string pt = cmbPue.Text; string tl = txbTel.Text; string cl = txbCel.Text; string em = txbMail.Text; Variables.Contacto(cn, pt, tl, cl, em); Limpiar.txb(this); Limpiar.cmb(this); this.Hide(); Foto fot = null; fot = Foto.Instancia(); fot.MdiParent = AdminMDI.ActiveForm; fot.MdiParent = UserMDI.ActiveForm; fot.Show(); } else { MessageBox.Show("Debes de Seleccionar una opcion", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Debes de llenar todos los campos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnRegistrar_Click(object sender, EventArgs e) { if (Vacio.txb(this)) { if (Vacio.cmb(this)) { string ef = cbxEntFed.Text; string dm = cbxDelMun.Text; string cl = txbCol.Text; string cp = txbCodPos.Text; string cy = txbCalle.Text; string ne = txbNumExt.Text; string ni = txbNumInt.Text; Variables.Domicilio(ef, dm, cl, cp, cy, ne, ni); Limpiar.txb(this); Limpiar.cmb(this); this.Hide(); Contacto con = null; con = Contacto.Instancia(); con.MdiParent = AdminMDI.ActiveForm; con.MdiParent = UserMDI.ActiveForm; con.Show(); } else { MessageBox.Show("Debes de Seleccionar una opcion", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Debes de llenar todos los campos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void button1_Click(object sender, EventArgs e) { Limpiar.txb(this); dtpFecNac.ResetText(); Limpiar.cmb(this); aPat = ""; aMat = ""; nAsp = ""; fNac = ""; eFed = ""; sAsp = ""; }
private void Registro_Load(object sender, EventArgs e) { ManejoBD bd = new ManejoBD(); bd.buscarg("*", "estados"); cbxEntFed.DataSource = bd.ds.Tables[0].DefaultView; cbxEntFed.DisplayMember = "noEst"; cbxEntFed.ValueMember = "clEst"; Limpiar.txb(this); dtpFecNac.ResetText(); Limpiar.cmb(this); }
private void btnEntrar_Click(object sender, EventArgs e) { string userR; string passR; int tipo; string user = txbUser.Text; string pass = txbPass.Text; string sql = "SELECT * FROM Usuarios WHERE noUsu ='" + user + "' AND pwUsu ='" + pass + "'"; if (Vacio.txb(this)) { db.buscar(sql); if (db.dt.Rows.Count > 0) { DataRow u = db.dt.Rows[0]; userR = Convert.ToString(u[1]); passR = Convert.ToString(u[2]); tipo = Convert.ToInt16(u[3]); if (user == userR && pass == passR && tipo == 1) { this.Hide(); AdminMDI mdiA = new AdminMDI(); mdiA.Show(); } if (user == userR && pass == passR && tipo == 2) { this.Hide(); UserMDI mdiU = new UserMDI(); mdiU.Show(); } } else { MessageBox.Show("Datos incorrectos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); Limpiar.txb(this); txbUser.Focus(); } } else { MessageBox.Show("Debes de llenar ambos campos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnRegistrar_Click(object sender, EventArgs e) { if (rdbAdmin.Checked) { tipo = 1; } if (rdbEmpleado.Checked) { tipo = 2; } if (Vacio.txb(this)) { if (txbPass.Text == txbPass2.Text) { if (db.insertar("usuarios", "noUsu,pwUsu,tpUsu,nmUsu,apUsu,tlUsu", "'" + txbUser.Text + "','" + txbPass.Text + "','" + tipo + "','" + txbNombre.Text + "','" + txbApellido.Text + "','" + txbTelefono.Text + "'")) { MessageBox.Show("Se ha registrado el Usuario " + txbUser.Text, "Correctamente", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); Limpiar.txb(this); } else { MessageBox.Show("No se ha registrado", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Las contraseñas no coinciden", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("No puedes dejar campos vacios", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnCon_Click(object sender, EventArgs e) { if (Vacio.txb(this)) { if (Vacio.cmb(this)) { string aPat = txbApePat.Text; string aMat = txbApeMat.Text; string nAsp = txbNom.Text; string fNac = dtpFecNac.Text; string eFed = cbxEntFed.Text; string sAsp = cbxSex.Text; string dAsp = txbCurAut.Text + txbCurHom.Text; string rAsp = txbRfcAut.Text + txbRfcHom.Text; string ecAsp = cmbEdoCivil.Text; Variables.DatosPersonales(aPat, aMat, nAsp, fNac, eFed, sAsp, dAsp, rAsp, ecAsp); Limpiar.txb(this); dtpFecNac.ResetText(); Limpiar.cmb(this); this.Hide(); Domicilio dom = null; dom = Domicilio.Instancia(); dom.MdiParent = AdminMDI.ActiveForm; dom.MdiParent = UserMDI.ActiveForm; dom.Show(); } else { MessageBox.Show("Debes de Seleccionar una opcion", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Debes de llenar todos los campos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void button1_Click(object sender, EventArgs e) { Limpiar.txb(this); Limpiar.cmb(this); }
private void btnCerrar_Click(object sender, EventArgs e) { Limpiar.txb(this); Limpiar.cmb(this); this.Hide(); }