예제 #1
0
        /*
         * Llenar combobox configuracion.
         */

        public void llenarCmbConfiguracion()
        {
            ConfiguracionRptControl configuracionControl = new ConfiguracionRptControl();
            List <ConfiguracionRpt> configuracionList    = configuracionControl.obtenerAllConfiguracionRpt();

            Cmb_Configuracion.ValueMember   = "CONFIGURACION";
            Cmb_Configuracion.DisplayMember = "NOMBRE";
            Cmb_Configuracion.DataSource    = configuracionList;
        }
예제 #2
0
        private void llenarTbpDato(ReporteModulo reporteMdl)
        {
            deshabilitarCampos();

            ConfiguracionRptControl confControl = new ConfiguracionRptControl();

            Cmb_Reporte.Text         = reporteMdl.REPORTE.NOMBRE;
            Cmb_Reporte.SelectedText = Cmb_Reporte.Text;

            Cmb_Modulo.Text         = reporteMdl.MODULO.NOMBRE;
            Cmb_Modulo.SelectedText = Cmb_Modulo.Text;

            Txt_Estado.Text = reporteMdl.ESTADO.ToString();
        }
예제 #3
0
        private void llenarTbpDato(Reporte reporte)
        {
            deshabilitarCampos();
            Txt_Codigo.Text = reporte.REPORTE.ToString();
            Txt_Nombre.Text = reporte.NOMBRE;
            //      Cmb_Configuracion.SelectedItem = Cmb_Configuracion.Items[reporte.CONFIGURACION.CONFIGURACION];
            ConfiguracionRptControl confControl = new ConfiguracionRptControl();
            ConfiguracionRpt        conf        = confControl.obtenerConfiguracionRpt(reporte.CONFIGURACION.CONFIGURACION);

            Cmb_Configuracion.Text         = conf.NOMBRE;
            Cmb_Configuracion.SelectedText = Cmb_Configuracion.Text;

            Txt_Archivo.Text = reporte.NOMBRE_ARCHIVO;
            Txt_Estado.Text  = reporte.ESTADO.ToString();
        }