private void CargarInformacionDeLaConfiguracion()
        {
            try
            {
                ConfiguracionEN oRegistroEN = new ConfiguracionEN();
                ConfiguracionLN oRegistroLN = new ConfiguracionLN();

                oRegistroEN.IdConfiguracion = 1;

                if (oRegistroLN.ListadoPorIdentificador(oRegistroEN, Program.oDatosDeConexion))
                {
                    DataRow Fila = oRegistroLN.TraerDatos().Rows[0];

                    Program.oConfiguracionEN.RutaRespaldos        = Fila["RutaRespaldos"].ToString();
                    Program.oConfiguracionEN.RutaRespaldosDeExcel = Fila["RutaRespaldosDeExcel"].ToString();
                    Program.oConfiguracionEN.PathMysSQLDump       = Fila["PathMysSQLDump"].ToString();
                    Program.oConfiguracionEN.PathMySQL            = Fila["PathMySQL"].ToString();
                    Program.oConfiguracionEN.NombreDelSistema     = Fila["NombreDelSistema"].ToString();
                    Program.oConfiguracionEN.TiempoDeRespaldo     = Convert.ToInt32(Fila["TiempoDeRespaldo"].ToString());
                    Program.oConfiguracionEN.PrecioPorDefecto     = Convert.ToInt32(Fila["PrecioPorDefecto"].ToString());
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(string.Format("Error: {0} ", ex.Message), "Traer información del Registro", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
예제 #2
0
        private void TraerInformacionDelRegistro()
        {
            try
            {
                ConfiguracionEN oRegistroEN = new ConfiguracionEN();
                ConfiguracionLN oRegistroLN = new ConfiguracionLN();

                oRegistroEN.IdConfiguracion = IdConfiguracion;

                if (oRegistroLN.ListadoPorIdentificador(oRegistroEN, Program.oDatosDeConexion))
                {
                    DataRow Fila = oRegistroLN.TraerDatos().Rows[0];

                    txtRutaRespaldosBD.Text = Fila["RutaRespaldos"].ToString();
                    txtRutaExportacionArchivosExcel.Text = Fila["RutaRespaldosDeExcel"].ToString();
                    txtNivelesDeLaCuentas.Text           = Fila["NivelesDeLaCuenta"].ToString();
                    txtMysqlDump.Text = Fila["PathMysSQLDump"].ToString();
                    txtPathMySQL.Text = Fila["PathMySQL"].ToString();
                    txtCuentaPrincipalDeBanco.Text         = Fila["CuentaPrincipalDeBanco"].ToString();
                    txtNombreDelSistema.Text               = Fila["NombreDelSistema"].ToString();
                    txtUtilidadOPerdidaDelEjercicio.Text   = Fila["UtilidadOPerdidaDelEjercicio"].ToString();
                    txtTiempoDeRespaldo.Text               = Fila["TiempoDeRespaldo"].ToString();
                    txtCuentaQueSeVaOcultarNivel.Text      = Fila["CuentaQueSeVaOcultarNivel"].ToString();
                    cmbNivelDeLaCuentaAOcultar.Text        = Fila["NivelDeLaCuentaAOcultar"].ToString();
                    txtCuentaQueSeVaAMostrar.Text          = Fila["CuentaQueSeVaAMostrar"].ToString();
                    cmbNivelDelaCuentaQueSeVaAMostrar.Text = Fila["NivelDelaCuentaQueSeVaAMostrar"].ToString();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(string.Format("Error: {0} ", ex.Message), "Traer información del Registro", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
예제 #3
0
        private void CargarInformacionDeLaConfiguracion()
        {
            try
            {
                ConfiguracionEN oRegistroEN = new ConfiguracionEN();
                ConfiguracionLN oRegistroLN = new ConfiguracionLN();

                oRegistroEN.IdConfiguracion = 1;

                if (oRegistroLN.ListadoPorIdentificador(oRegistroEN, Program.oDatosDeConexion))
                {
                    DataRow Fila = oRegistroLN.TraerDatos().Rows[0];

                    Program.oConfiguracionEN.RutaRespaldos                  = Fila["RutaRespaldos"].ToString();
                    Program.oConfiguracionEN.RutaRespaldosDeExcel           = Fila["RutaRespaldosDeExcel"].ToString();
                    Program.oConfiguracionEN.NivelesDeLaCuenta              = Convert.ToInt32(Fila["NivelesDeLaCuenta"].ToString());
                    Program.oConfiguracionEN.PathMysSQLDump                 = Fila["PathMysSQLDump"].ToString();
                    Program.oConfiguracionEN.PathMySQL                      = Fila["PathMySQL"].ToString();
                    Program.oConfiguracionEN.CuentaPrincipalDeBanco         = Fila["CuentaPrincipalDeBanco"].ToString();
                    Program.oConfiguracionEN.NombreDelSistema               = Fila["NombreDelSistema"].ToString();
                    Program.oConfiguracionEN.UtilidadOPerdidaDelEjercicio   = Fila["UtilidadOPerdidaDelEjercicio"].ToString();
                    Program.oConfiguracionEN.TiempoDeRespaldo               = Convert.ToInt32(Fila["TiempoDeRespaldo"].ToString());
                    Program.oConfiguracionEN.NivelDeLaCuentaAOcultar        = Convert.ToInt32(Fila["NivelDeLaCuentaAOcultar"].ToString());
                    Program.oConfiguracionEN.CuentaQueSeVaOcultarNivel      = Fila["CuentaQueSeVaOcultarNivel"].ToString();
                    Program.oConfiguracionEN.CuentaQueSeVaAMostrar          = Fila["CuentaQueSeVaAMostrar"].ToString();
                    Program.oConfiguracionEN.NivelDelaCuentaQueSeVaAMostrar = Convert.ToInt32(Fila["NivelDelaCuentaQueSeVaAMostrar"].ToString());
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(string.Format("Error: {0} ", ex.Message), "Traer información del Registro", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
예제 #4
0
        private void TraerInformacionDelRegistro()
        {
            try
            {
                ConfiguracionEN oRegistroEN = new ConfiguracionEN();
                ConfiguracionLN oRegistroLN = new ConfiguracionLN();

                oRegistroEN.IdConfiguracion = IdConfiguracion;

                if (oRegistroLN.ListadoPorIdentificador(oRegistroEN, Program.oDatosDeConexion))
                {
                    DataRow Fila = oRegistroLN.TraerDatos().Rows[0];

                    txtRutaRespaldosBD.Text = Fila["RutaRespaldos"].ToString();
                    txtRutaExportacionArchivosExcel.Text = Fila["RutaRespaldosDeExcel"].ToString();
                    txtMysqlDump.Text        = Fila["PathMysSQLDump"].ToString();
                    txtPathMySQL.Text        = Fila["PathMySQL"].ToString();
                    txtNombreDelSistema.Text = Fila["NombreDelSistema"].ToString();
                    txtTiempoDeRespaldo.Text = Fila["TiempoDeRespaldo"].ToString();
                    cmbPrecioPorDefecto.Text = string.Format("Precio ", Fila["PrecioPorDefecto"].ToString());
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(string.Format("Error: {0} ", ex.Message), "Traer información del Registro", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }