Пример #1
0
        private void btnGrabarEntrega_Click(object sender, EventArgs e)
        {
            if (txtEntregadoa.Text == "")
            {
                Mensaje("Debe ingresar el destinatario del cheque ");
                return;
            }
            string        EntregadoA = txtEntregadoa.Text;
            cChequeCobrar cheque     = new cChequeCobrar();
            Int32         CodCheque  = Convert.ToInt32(Principal.CodigoPrincipalAbm.ToString());

            cheque.GrabarEntregado(CodCheque, EntregadoA);
            Mensaje("Datos grabados correctamente");
        }