report

BIRT: pdf emitter, load/use fonts from relative path or from jar files

我的梦境 提交于 2019-12-04 03:44:15
问题 I use BIRT since early days and still have riddles regarding PDF emitter. Short story : Can I configure fontsConfig.xml to load fonts from relative path or from jars? Long story: We are using both FOP and BIRT for generating PDF in our web application. It would be nice to share fonts between libraries. Unfortunately, I can't find a way to do it with BIRT 2.3.1 The root of evil is fontsConfig.xml If I configure it like shown below it works fine: <font-paths> <path path="fonts"/> </font-paths>

Visual Studio 2013 - Add Item > Report option missing

流过昼夜 提交于 2019-12-04 03:19:53
I want to create RDLC file in my C# project. ( http://msdn.microsoft.com/en-us/library/ms252067.aspx ) But I'm not getting Reporting item templates ( Report or Report Wizard ). I've got VS2013 Professional Edition so I assume it should have been there. I've also installed SQL Server Data Tools for VS2013 and I'm able to create New Report Server Project and add a report there. But that's RDL file, that's not what I'm looking for. I've tried devenv.exe /InstallVSTemplates with no luck. I'm not able to find these item templates online either (not sure if my company firewall is blocking anything).

The type or namespace name 'CrystalReportViewer' does not exist in the namespace 'CrystalDecisions.Web' (are you missing an assembly reference?)

亡梦爱人 提交于 2019-12-04 03:14:01
I'm getting the following error on using crystal report in my asp.net 3.5 a3-tier application The type or namespace name 'CrystalReportViewer' does not exist in the namespace 'CrystalDecisions.Web' (are you missing an assembly reference?) the namespaces I have included are: using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Xml.Linq; using MorvelNew

asp.net - Generate Powerpoint file on the fly

ε祈祈猫儿з 提交于 2019-12-04 02:54:53
I have a client of my web based application who heavily uses the data from our system for powerpoint presentations. We currently allow data to export in more traditional file types...PDF, CSV, HTML, and a few others. Powerpoint doesn't seem to be really automated. Is there a way, on the ASP.NET server side, to automate the creation and on-demand download of a powerpoint file format for a report from a system? In this article , Steve suggests using Aspose's Slide application. He also explains step by step on how to generate the PowerPoint file. Here are some code excerpts (in VB): Opening an

How to update default header in PDF report (qWeb)?

本小妞迷上赌 提交于 2019-12-04 02:07:38
问题 I have a PDF report, using qWeb in Odoo (v8). My report has this line of code: <t t-call="report.external_layout"> This line I suppose is for inserting the predefined header in the PDF report. In Settings -> Companies, tab Report Configuration in respective company, there is something like this: <header> <pageTemplate> <frame id="first" x1="1.3cm" y1="3.0cm" height="21.7cm" width="19.0cm"/> <stylesheet> <!-- Set here the default font to use for all <para> tags --> <paraStyle name='Normal'

ping多个IP地址把结果记录在txt的批处理。

自闭症网瘾萝莉.ら 提交于 2019-12-04 01:06:08
在论坛里面搜了下关于ping的批处理,有些和我想要的比较接近,需要稍微改下,但是我不太懂语法,改完连结果都没了。。。 我想ping一批IP,在IP.TXT里面,然后把通和不通的结果分别输出到ok.txt和no_ok.txt 里面显示192.168.1.1/OK 或者192.168.1.2/NO 或者把结果都输出到一个report.txt里面也可以。 我找来了这个批处理: @echo off set now=%date% %time% echo %now%>>report.txt for /f %%i in (IP.txt) do ( ping -w 1 -n 2 %%i &&echo %%i/OK >>report.txt||echo %%i/NO>>report.txt ) start report.txt 摘自: http://www.bathome.net/thread-24168-1-1.html 来源: 51CTO 作者: wangheyu1 链接: https://blog.51cto.com/wangheyu1/2447912

Subreports in Jasper Reports

吃可爱长大的小学妹 提交于 2019-12-03 22:14:18
问题 I have two tables to be printed in same page. Data for those tables will be supplied from a map from a custom data source. I need to implement it. I googled for implementing this task. At that time I came across sub-reports concept, but I didn't get much info for how to implement sub-reports. I have an idea of how to create sub-reports. But I don't know how to fill sub reports with customdatasource. That's my question. Please help me in achieving this. Note: I tried to implement subreports,

Ms Access Send Email with Report as Attachment

给你一囗甜甜゛ 提交于 2019-12-03 21:38:09
问题 Using VBA code builder in MS Access, I have been able to write code that opens Outlook and send me an email with the click of a button. I am having problems with adding an attachment. Most code I have found adds files outside the MS Database as an attachment, I would like to add a report created in my database as an attachment. Private Sub EmailReport_Click() Dim oApp As New Outlook.Application Dim oEmail As Outlook.MailItem 'Email the results of the report generated Set oEmail = oApp

PowerBI开发 第十六篇:PowerBI Service基本概念

一个人想着一个人 提交于 2019-12-03 20:50:21
从总体上来看,PowerBI Service 有4个主要的构建模块,分别是dashboards、reports、workbooks 和 datasets,位于workspaces中。 一,Workspaces 在PowerBI Service中,Workspaces是dashboards、reports、workbooks 和 datasets的上层容器,有两类Workspace:My workspace和workspaces。 My workspace:是个人的workspace,只有用户自己有访问权限。用户可以从My workspace中分享dashboard和report。 Workspaces: 用于和同事进行协同工作,或者分享内容,也是创建、发布和管理报表的空间。 二,Reports Reports是Report的组织目录,开发人员把报表从PowerBI Desktop中发布到Reports空间中。每一个Report都包含一个或多个Page,用户打开Page查看图表,比如线图、直方图等,Page中的图表(chart)也称作visual。 三,Datasets Datasets用于组织和管理workspace下的所有dataset。dataset是数据(data)的集合,data是Report中的一个数据源。一个Report所需要的数据都包含在一个dataset中

How to generate different types of reports using SQLite database in android?

人盡茶涼 提交于 2019-12-03 20:24:41
I am developing one android application in which I need to generate different types of reports in various format. I want to generate reports in PDF, XLS, DOC and Text File. All the data are stored in SQLite database. Please guide me how to implement it in android. Hi you can generate PDF reports by using the following code import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.URL; import java.util.Date; import com.itextpdf.text.Anchor; import com.itextpdf.text.BadElementException; import com.itextpdf.text.BaseColor; import com.itextpdf.text.Chapter;