private void ACTF_003_Rpt_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) { lbl_fecha.Text = DateTime.Now.ToString("d/MM/yyyy hh:mm:ss"); lbl_usuario.Text = usuario; lbl_empresa.Text = empresa; int IdEmpresa = p_IdEmpresa.Value == null ? 0 : Convert.ToInt32(p_IdEmpresa.Value); decimal IdRetiroActivo = p_IdRetiroActivo.Value == null ? 0 : Convert.ToDecimal(p_IdRetiroActivo.Value); ACTF_003_Bus bus_rpt = new ACTF_003_Bus(); List <ACTF_003_Info> lst_rpt = bus_rpt.get_list(IdEmpresa, IdRetiroActivo); this.DataSource = lst_rpt; tb_empresa_Bus bus_empresa = new tb_empresa_Bus(); var emp = bus_empresa.get_info(IdEmpresa); if (emp != null && emp.em_logo != null) { ImageConverter obj = new ImageConverter(); lbl_imagen.Image = (Image)obj.ConvertFrom(emp.em_logo); } }
private void ACTF_003_Rpt_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) { lbl_fecha.Text = DateTime.Now.ToString("d/MM/yyyy hh:mm:ss"); lbl_usuario.Text = usuario; lbl_empresa.Text = empresa; int IdEmpresa = p_IdEmpresa.Value == null ? 0 : Convert.ToInt32(p_IdEmpresa.Value); decimal IdRetiroActivo = p_IdRetiroActivo.Value == null ? 0 : Convert.ToDecimal(p_IdRetiroActivo.Value); ACTF_003_Bus bus_rpt = new ACTF_003_Bus(); List <ACTF_003_Info> lst_rpt = bus_rpt.get_list(IdEmpresa, IdRetiroActivo); this.DataSource = lst_rpt; }