/// <summary> /// Initializes a new instance of the <see cref="Frmcentro"/> class. /// </summary> public Frmcentro() { this.frmguar = new Form_VisualContable(); this.frmreporguar = new Form_ReporteCentro(); this.InitializeComponent(); this.negociocentro = new Centron(); this.funtions = new Funciones(); }
public Form_ReporteCentro(Frmcentro frmcentro) { // TODO: Complete member initialization this.frmcentro = frmcentro; this.InitializeComponent(); this.negocioCentro = new Centron(); this.GenerarReporte(); crystal_reportcentro.ShowLogo = false; }
/// <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(); }
public Form_ReportePresupuesto(Frmpresupuesto frm_presupuesto) { this.negocioPresupuesto = new Presupueston(); this.negocioEmpresa = new Empresan(); this.negocioCuenta = new Cuentan(); this.negocioCentro = new Centron(); this.funtions = new Funciones(); this.frmpresupuesto = frm_presupuesto; this.InitializeComponent(); crystal_Presupuesto.ShowLogo = false; }
public Frmcentro(string tipof, string centro, Form_Asientos form_Asientos) { this.tipoform = tipof; this.estado = false; this.form_Asientos = form_Asientos; this.InitializeComponent(); txt_codigo.Focus(); this.negociocentro = new Centron(); this.funtions = new Funciones(); this.AgregarCentro(centro); }