private void VerDtsCliente(String CdgoTarjeta) { //clsEjecutor objCliente = new clsEjecutor(this.CdgoTarjeta); bool blExisteCte = objCliente.getExisteCte(); if (!blExisteCte) { /* Cliente NO esta registrado en base datos. */ if (MsjeBoxNoExisteTarj(CdgoTarjeta) == DialogResult.No) { return; } /* blExisteCte(false) tds los Campos quedan habilitados para modificar! */ } frmCliente ofrmCliente = new frmCliente(objCliente, blExisteCte); ofrmCliente.Show(); /* MUESTRA FORMULARIO CON DATOS DEL EJECUTOR ELEGIDO POR el admin. */ //this.Hide(); }
public frmClaveAdmin(frmCliente _frmCliente) { InitializeComponent(); this.oFrmCliente = _frmCliente; }