Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Frmcomprobantes"/> class.
 /// </summary>
 public Frmcomprobantes()
 {
     this.frmguar      = new Form_VisualContable();
     this.frmreporguar = new Form_ReporteComprobante();
     this.InitializeComponent();
     this.negociocompro = new Comprobantesn();
     this.funtions      = new Funciones();
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Handles the Click event of the Btn_buscar control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void Btn_buscar_Click(object sender, EventArgs e)
        {
            Form_VisualContable frm = new Form_VisualContable("comprobante", "buscar", this);

            this.frmguar  = frm;
            frm.MdiParent = this.MdiParent;
            frm.Show();
            this.BotonesInhab();
        }
Ejemplo n.º 3
0
 public Form_Formatos()
 {
     this.InitializeComponent();
     this.frmguar        = new Form_VisualContable();
     this.frmreporguar   = new Form_ReporteFormato();
     this.negocioFormato = new Formatosn();
     this.negocioCuenta  = new Cuentan();
     this.funtions       = new Funciones();
 }
Ejemplo n.º 4
0
        private void Btn_eliminar_Click(object sender, EventArgs e)
        {
            Form_VisualContable frm = new Form_VisualContable("presupuesto", "eliminar", this);

            frm.MdiParent = this.MdiParent;
            this.frmguar  = frm;
            frm.Show();
            this.BotonesInhab();
        }
Ejemplo n.º 5
0
        private void Btn_Editarpyg_Click(object sender, EventArgs e)
        {
            Form_VisualContable frm = new Form_VisualContable("formato", "editar", "2", this);

            this.frmguar  = frm;
            frm.MdiParent = this.MdiParent;
            frm.Show();
            this.BotonesInhab();
        }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Frmnits"/> class.
 /// </summary>
 public Frmnits()
 {
     this.negocioNit        = new Nitsn();
     this.negocioTipos      = new Tiponitn();
     this.negociosUbicacion = new Ubicacionn();
     this.funtions          = new Funciones();
     this.frmguar           = new Form_VisualContable();
     this.frmreporguar      = new Form_ReporteNits();
     this.InitializeComponent();
 }
Ejemplo n.º 7
0
        /// <summary>
        /// Handles the Click event of the Btn_eliminar control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void Btn_eliminar_Click(object sender, EventArgs e)
        {
            Form_VisualContable frm = new Form_VisualContable("comprobante", "eliminar", this);

            this.frmguar  = frm;
            frm.MdiParent = this.MdiParent;
            frm.Show();
            this.BotonesInhab();
            this.CamposVacios();
            this.CamposInactivos();
        }
Ejemplo n.º 8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Frmpresupuesto"/> class.
 /// </summary>
 public Frmpresupuesto()
 {
     this.negocioPresupuesto = new Presupueston();
     this.negocioCuenta      = new Cuentan();
     this.negocioCentro      = new Centron();
     this.funtions           = new Funciones();
     this.frmguar            = new Form_VisualContable();
     this.frmguarreport      = new Form_ReportePresupuesto();
     this.InitializeComponent();
     this.AutoCompletar();
 }
Ejemplo n.º 9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Form_Cuenta"/> class.
 /// </summary>
 public Form_Cuenta()
 {
     this.usrClose = false;
     this.InitializeComponent();
     this.negocioCuenta  = new Cuentan();
     this.negocioNits    = new Nitsn();
     this.funtions       = new Funciones();
     this.negocioEmpresa = new Empresan();
     this.frmguar        = new Form_VisualContable();
     this.frmreporguar   = new Form_ReportCuenta();
     this.NombreEmpresa();
 }
Ejemplo n.º 10
0
        /// <summary>
        /// Initializes a new instance of the <see cref="FrmTributario"/> class.
        /// </summary>
        public FrmTributario()
        {
            this.frmguar = new Form_VisualContable();

            this.frmreporguar = new Form_ReporteTributario();

            this.InitializeComponent();

            this.negociotributario = new tributariosn();

            this.negocioNits = new Nitsn();

            this.funtions = new Funciones();
        }
Ejemplo n.º 11
0
 public Form_Cuenta(string menu, string cuenta, Form_Asientos form_Asientos)
 {
     // TODO: Complete member initialization
     this.menub    = menu;
     this.usrClose = false;
     this.estado   = false;
     this.InitializeComponent();
     this.form_Asientos  = form_Asientos;
     this.negocioCuenta  = new Cuentan();
     this.negocioNits    = new Nitsn();
     this.funtions       = new Funciones();
     this.negocioEmpresa = new Empresan();
     this.frmguar        = new Form_VisualContable();
     this.frmreporguar   = new Form_ReportCuenta();
     this.NombreEmpresa();
     this.AgregarOtro(cuenta);
     this.validaotrascuentas = 1;
 }