private void selfshow()
        {
            deleteInternals local = new deleteInternals(this);

            local.ShowDialog();
            if (this.idCliente == -1)
            {
                this.Close();
            }
            else
            {
                this.getInitialDataUPD();
            }
        }
Beispiel #2
0
 private void initcommit()
 {
     genericDefinitions.dangerInfo("Al eliminar un cliente es posible que se pierdan registros y datos importantes del sistema: contacte al desarrollador del sistema para obtener ayuda.", "Aviso");
     this.myObjFIRST = new deleteInternals(this);
     while (true)
     {
         this.myObjFIRST.ShowDialog();
         break;
     }
     if (this.idCliente != -1)
     {
         this.getInitialDataDEL();
     }
     else
     {
         this.Close();
     }
 }