惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
B
Blog RSS Feed
小众软件
小众软件
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
WordPress大学
WordPress大学
月光博客
月光博客
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
量子位
V
Visual Studio Blog
罗磊的独立博客
Last Week in AI
Last Week in AI
The Cloudflare Blog
H
Help Net Security
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队

博客园 - fosoyo

.NET Framework 3.5 SP1 bootstrapper 包(安装和部署)的解决方法 DXperienceUniversal 9.1.0(2009年3月13日版本) EMS SQL Manager 2008 for SQL Server 3.2.0.2 SQLite Expert Professional 1.7.25 Schematrix SchemaCoder [VS.NET] v1.5 Dundas Gauge for Reporting Services Dundas Chart for SharePoint RedGate .NET Developer Bundle RedGate SQL Toolbelt Telerik Reporting Q2 2008 SP2 WPF 24小时自学教程 LINQ Unleashed for C# C#高级编程(第6版) Professional CSharp 2008 EntitySpaces 2008.1.0922 Kentico CMS 3.1 Xtreme ToolkitPro v12.0.2 Xtreme SuitePro ActiveX v12.0.2 Xceed Ultimate Suite 2008 v3.2.8465 CodeSmith Professional 5.0.1.4983
FastReport Studio v4.6.98.0
fosoyo · 2008-10-01 · via 博客园 - fosoyo

FastReport Studio

FASTREPORT® STUDIO - report generator for developers

Integration Into Your Project:

FastReport Studio can be used in the following developers’ environments:

  • Microsoft Visual C++ 6;
  • Microsoft Visual Basic 6;
  • Microsoft Visual C++ .NET;
  • Microsoft Visual Basic .NET;
  • Microsoft C#.NET;
  • Microsoft Visual FoxPro;
  • Microsoft Access;
  • Microsoft ASP.NET;
  • Borland Delphi .NET;
  • SyBase PowerBuilder

In addition, you can use FastReport Studio in any environment that supports COM technology.

FastReport Studio contains a powerful COM+ interface that allows you to control the entire report-creation process.

Visual C++ example:

#if _MSC_VER < 1300
#import "FastReport3.dll" named_guids
#else
#import "libid:d3c6fb9b-9edf-48f3-9a02-6d8320eaa9f5" named_guids
#endif
using namespace FastReport;
int main(int argc, char * argv[])
{
CoInitialize(NULL);
IfrxReportPtr pReport(__uuidof(TfrxReport));
pReport->LoadReportFromFile("MyReport.fr3");
pReport->DesignReport();
CoUninitialize();
return 0;
}

Visual Basic 6 example:

Dim report As TfrxReport
Private Sub Command1_Click()
report.LoadReportFromFile("MyReport.fr3")
report.DesignReport
End Sub
Private Sub Form_Load()
Set report = CreateObject("FastReport.TfrxReport")
End Sub
Private Sub Form_Unload(Cancel As Integer)
Set report = Nothing
End Sub

C#.NET example:

using System;
using FastReport;
namespace ConsoleApplication1
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
TfrxReportClass report;
report = new TfrxReportClass();
report.LoadReportFromFile("MyReport.fr3");
report.DesignReport();
}
}
}

Working With Data:

FastReport Studio uses Microsoft ADO (ODBC) technology and can work with any database that supports ODBC (both local - Access, Paradox, FoxPro - and corporate - oracle, Informix, Microsoft SQL Server, Interbase, etc.)

Data analysis:

FastReport Studio includes everything you need to create cross-tab reports and reports with even the most complex charts, which are often needed in the decision-making process. You can also perform custom data handling, using powerful, built-in macro-language.

Publishing Reports:

With FastReport Studio, you can view a report in the preview window, print it, export it to many supported formats (PDF, RTF, XLS, XML, HTML, JPG, BMP, GIF, TIFF, TXT, CSV, etc.), or email it. FastReport Studio includes a scheduler utility that allows you to run reports regularly, save them, and email them.

Fast and Easy to Learn:

FastReport Studio contains detailed documentation and many examples of various reports. You can quickly learn the product's capabilities and immediately start creating reports. Using the built-in report wizard, you can easily create simple reports.

下载地址:http://www.fosoyo.com/article.asp?id=152