在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → FastReport的winform官方例子

FastReport的winform官方例子

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.80M
  • 下载次数:58
  • 浏览次数:250
  • 发布时间:2021-02-18
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
FastReport的winform 官网实例,有C#和VB.NET两种语言;例子里示范了如何动态创建报表、预览报表和报表打印;FastReport报表可以以文件形式和文件流(MemoryStream)的方式保存和打开报表,例子里有c/S和b/s报表。
【实例截图】
【核心代码】
e64b0381-14d3-41c6-ab36-d2a1d621c28e
├── Demo.exe
├── Demos
│   ├── C#
│   │   ├── CustomDesigner
│   │   │   ├── CustomDesigner.csproj
│   │   │   ├── CustomDesigner.sln
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── CustomOpenSaveDialogs
│   │   │   ├── CustomOpenSaveDialogs.csproj
│   │   │   ├── CustomOpenSaveDialogs.sln
│   │   │   ├── database.xml
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── OpenDialogForm.cs
│   │   │   ├── OpenDialogForm.Designer.cs
│   │   │   ├── OpenDialogForm.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── SaveDialogForm.cs
│   │   │   ├── SaveDialogForm.Designer.cs
│   │   │   └── SaveDialogForm.resx
│   │   ├── CustomPreview
│   │   │   ├── CustomPreview.csproj
│   │   │   ├── CustomPreview.sln
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── DataFromArray
│   │   │   ├── DataFromArray.csproj
│   │   │   ├── DataFromArray.sln
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── report.frx
│   │   ├── DataFromBusinessObject
│   │   │   ├── DataFromBusinessObject.csproj
│   │   │   ├── DataFromBusinessObject.sln
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── report.frx
│   │   ├── DataFromDataSet
│   │   │   ├── DataFromDataSet.csproj
│   │   │   ├── DataFromDataSet.sln
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── report.frx
│   │   ├── ExportToPDF
│   │   │   ├── ExportToPDF.csproj
│   │   │   ├── ExportToPDF.sln
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── report.frx
│   │   ├── Main
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── fr.ico
│   │   │   ├── Main.csproj
│   │   │   ├── Main.sln
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── MdiDesigner
│   │   │   ├── MdiDesigner.csproj
│   │   │   ├── MdiDesigner.sln
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ReportFromCode
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── ReportFromCode.csproj
│   │   │   └── ReportFromCode.sln
│   │   ├── UserFunctions
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── UserFunctions.csproj
│   │   │   └── UserFunctions.sln
│   │   ├── Web
│   │   │   ├── App_Code
│   │   │   │   ├── Barcodes.cs
│   │   │   │   ├── Groups.cs
│   │   │   │   └── Labels.cs
│   │   │   ├── config.xml
│   │   │   ├── Default.aspx
│   │   │   ├── Default.aspx.cs
│   │   │   ├── images
│   │   │   │   ├── background.jpg
│   │   │   │   ├── buttons1
│   │   │   │   │   ├── Export.gif
│   │   │   │   │   ├── First_disabled.gif
│   │   │   │   │   ├── First.gif
│   │   │   │   │   ├── Last_disabled.gif
│   │   │   │   │   ├── Last.gif
│   │   │   │   │   ├── Next_disabled.gif
│   │   │   │   │   ├── Next.gif
│   │   │   │   │   ├── Prev_disabled.gif
│   │   │   │   │   ├── Prev.gif
│   │   │   │   │   ├── Print.gif
│   │   │   │   │   ├── Refresh.gif
│   │   │   │   │   └── Zoom.gif
│   │   │   │   ├── buttons2
│   │   │   │   │   ├── Export.gif
│   │   │   │   │   ├── First_disabled.gif
│   │   │   │   │   ├── First.gif
│   │   │   │   │   ├── Last_disabled.gif
│   │   │   │   │   ├── Last.gif
│   │   │   │   │   ├── Next_disabled.gif
│   │   │   │   │   ├── Next.gif
│   │   │   │   │   ├── Prev_disabled.gif
│   │   │   │   │   ├── Prev.gif
│   │   │   │   │   ├── Print.gif
│   │   │   │   │   ├── Refresh.gif
│   │   │   │   │   └── Zoom.gif
│   │   │   │   └── demo_logo.png
│   │   │   ├── Web.Config
│   │   │   └── WebDemo.sln
│   │   └── WebMediumTrust
│   │   ├── App_Code
│   │   │   ├── Barcodes.cs
│   │   │   ├── Complex (Master-detail + Group).cs
│   │   │   ├── Groups.cs
│   │   │   ├── Hierarchic List.cs
│   │   │   ├── Labels.cs
│   │   │   ├── Master-Detail.cs
│   │   │   ├── Matrix.cs
│   │   │   ├── Simple List.cs
│   │   │   └── Subreport.cs
│   │   ├── App_Data
│   │   │   └── nwind.xml
│   │   ├── Default.aspx
│   │   ├── Default.aspx.cs
│   │   ├── images
│   │   │   ├── background.jpg
│   │   │   ├── buttons1
│   │   │   │   ├── Export.gif
│   │   │   │   ├── First_disabled.gif
│   │   │   │   ├── First.gif
│   │   │   │   ├── Last_disabled.gif
│   │   │   │   ├── Last.gif
│   │   │   │   ├── Next_disabled.gif
│   │   │   │   ├── Next.gif
│   │   │   │   ├── Prev_disabled.gif
│   │   │   │   ├── Prev.gif
│   │   │   │   ├── Print.gif
│   │   │   │   ├── Refresh.gif
│   │   │   │   └── Zoom.gif
│   │   │   └── demo_logo.png
│   │   ├── Web.Config
│   │   └── WebMediumTrust.sln
│   ├── Reports
│   │   ├── About Microsoft Chart.frx
│   │   ├── Alternate Color Each Row.frx
│   │   ├── Barcode.frx
│   │   ├── Business Objects.frx
│   │   ├── Cascaded Data Filtering.frx
│   │   ├── CellularText.frx
│   │   ├── Chart.frx
│   │   ├── CheckBox.frx
│   │   ├── Column Datasource.frx
│   │   ├── Column Datasource, Wrapped.frx
│   │   ├── Complete upto N Rows.frx
│   │   ├── Complex Column Headers.frx
│   │   ├── Complex (Hyperlinks, Outline, TOC).frx
│   │   ├── Complex (Master-detail + Group).frx
│   │   ├── Databand Columns, Row Numbers.frx
│   │   ├── Dialog Events.frx
│   │   ├── Double Pass, Total Pages.frx
│   │   ├── Drill-Down Groups.frx
│   │   ├── Duplicate Values.frx
│   │   ├── Filtering with CheckedListBox.frx
│   │   ├── Filtering with DataSelector.frx
│   │   ├── Filtering with Date Ranges.frx
│   │   ├── Filtering with Ranges.frx
│   │   ├── Fit Dynamic Table To Page.frx
│   │   ├── Groups.frx
│   │   ├── Guidelines.frx
│   │   ├── Handle Dialog Forms.frx
│   │   ├── Handle Page Breaks.frx
│   │   ├── Handle Preview Clicks.frx
│   │   ├── Hello, FastReport!.frx
│   │   ├── Hierarchic List.frx
│   │   ├── Highlight Based on Row-Column.frx
│   │   ├── Highlight.frx
│   │   ├── Hyperlinks, Bookmarks.frx
│   │   ├── Image.frx
│   │   ├── Inherited Report - base.frx
│   │   ├── Inherited Report.frx
│   │   ├── Interactive Chart.frx
│   │   ├── Interactive Matrix - Details.frx
│   │   ├── Interactive Matrix.frx
│   │   ├── Interactive Matrix With Chart.frx
│   │   ├── Interactive Report, 2-in-1.frx
│   │   ├── Interactive Report - Details.frx
│   │   ├── Interactive Report.frx
│   │   ├── Keep Together.frx
│   │   ├── Labels.frx
│   │   ├── Labels With Dialog.frx
│   │   ├── Lines and Shapes.frx
│   │   ├── Mail Merge.frx
│   │   ├── Master-Detail.frx
│   │   ├── Matrix.frx
│   │   ├── Matrix With Columns Only.frx
│   │   ├── Matrix With Rows Only.frx
│   │   ├── Microsoft Chart Sample.frx
│   │   ├── Multiplication Table.frx
│   │   ├── nwind.xml
│   │   ├── Objects Inside The Matrix.frx
│   │   ├── Odd-Even Pages, Mirror Margins.frx
│   │   ├── Odd-Even Rows.frx
│   │   ├── Outline.frx
│   │   ├── Pictures Inside The Matrix.frx
│   │   ├── Print Copy Names.frx
│   │   ├── Print DataTable.frx
│   │   ├── Print Entered Value.frx
│   │   ├── Print Month Names.frx
│   │   ├── Print on Previous Page.frx
│   │   ├── Print Total in The Group Header.frx
│   │   ├── Repeat Headers.frx
│   │   ├── reports.xml
│   │   ├── Report With Cover Page.frx
│   │   ├── RichText.frx
│   │   ├── Row Datasource, Detail Rows.frx
│   │   ├── Row Datasource.frx
│   │   ├── Row Datasource, Master-Detail.frx
│   │   ├── Shift Object Position.frx
│   │   ├── Side-by-Side Subreports.frx
│   │   ├── Simple List.frx
│   │   ├── Simple Matrix.frx
│   │   ├── Sort Group By Total.frx
│   │   ├── Start New Page, Reset Page Numbers.frx
│   │   ├── Stress-Test (1000x1000).frx
│   │   ├── Subreport.frx
│   │   ├── Table.frx
│   │   ├── Text.frx
│   │   ├── Two Cell Dimensions.frx
│   │   ├── Two Cell Dimensions, Side-by-Side.frx
│   │   ├── Two Column Dimensions.frx
│   │   ├── Two Matrices.frx
│   │   ├── Two Row Dimensions.frx
│   │   ├── Unicode.frx
│   │   ├── Using Expressions.frx
│   │   ├── Watermark.frx
│   │   └── ZipCode.frx
│   └── VB.Net
│   ├── CustomDesigner
│   │   ├── CustomDesigner.sln
│   │   ├── CustomDesigner.vbproj
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   └── My Project
│   │   ├── Application.Designer.vb
│   │   ├── Application.myapp
│   │   ├── AssemblyInfo.vb
│   │   ├── Resources.Designer.vb
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.vb
│   │   └── Settings.settings
│   ├── CustomOpenSaveDialogs
│   │   ├── CustomOpenSaveDialogs.sln
│   │   ├── CustomOpenSaveDialogs.vbproj
│   │   ├── database.xml
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── My Project
│   │   │   ├── Application.Designer.vb
│   │   │   ├── Application.myapp
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Resources.Designer.vb
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.vb
│   │   │   └── Settings.settings
│   │   ├── OpenDialogForm.Designer.vb
│   │   ├── OpenDialogForm.resx
│   │   ├── OpenDialogForm.vb
│   │   ├── SaveDialogForm.Designer.vb
│   │   ├── SaveDialogForm.resx
│   │   └── SaveDialogForm.vb
│   ├── CustomPreview
│   │   ├── CustomPreview.sln
│   │   ├── CustomPreview.vbproj
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   └── My Project
│   │   ├── Application.Designer.vb
│   │   ├── Application.myapp
│   │   ├── AssemblyInfo.vb
│   │   ├── Resources.Designer.vb
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.vb
│   │   └── Settings.settings
│   ├── DataFromArray
│   │   ├── DataFromArray.sln
│   │   ├── DataFromArray.vbproj
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── My Project
│   │   │   ├── Application.Designer.vb
│   │   │   ├── Application.myapp
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Resources.Designer.vb
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.vb
│   │   │   └── Settings.settings
│   │   └── report.frx
│   ├── DataFromBusinessObject
│   │   ├── DataFromBusinessObject.sln
│   │   ├── DataFromBusinessObject.vbproj
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── My Project
│   │   │   ├── Application.Designer.vb
│   │   │   ├── Application.myapp
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Resources.Designer.vb
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.vb
│   │   │   └── Settings.settings
│   │   └── report.frx
│   ├── DataFromDataSet
│   │   ├── DataFromDataSet.sln
│   │   ├── DataFromDataSet.vbproj
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── My Project
│   │   │   ├── Application.Designer.vb
│   │   │   ├── Application.myapp
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Resources.Designer.vb
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.vb
│   │   │   └── Settings.settings
│   │   └── report.frx
│   ├── ExportToPDF
│   │   ├── ExportToPDF.sln
│   │   ├── ExportToPDF.vbproj
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── My Project
│   │   │   ├── Application.Designer.vb
│   │   │   ├── Application.myapp
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Resources.Designer.vb
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.vb
│   │   │   └── Settings.settings
│   │   └── report.frx
│   ├── Main
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── Main.sln
│   │   ├── Main.vbproj
│   │   ├── My Project
│   │   │   ├── Application.Designer.vb
│   │   │   ├── Application.myapp
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Resources.Designer.vb
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.vb
│   │   │   └── Settings.settings
│   │   └── Resources
│   │   └── fr_blue_48x48.png
│   ├── ReportFromCode
│   │   ├── Form1.Designer.vb
│   │   ├── Form1.resx
│   │   ├── Form1.vb
│   │   ├── My Project
│   │   │   ├── Application.Designer.vb
│   │   │   ├── Application.myapp
│   │   │   ├── AssemblyInfo.vb
│   │   │   ├── Resources.Designer.vb
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.vb
│   │   │   └── Settings.settings
│   │   ├── ReportFromCode.sln
│   │   └── ReportFromCode.vbproj
│   └── UserFunctions
│   ├── Form1.Designer.vb
│   ├── Form1.resx
│   ├── Form1.vb
│   ├── My Project
│   │   ├── Application.Designer.vb
│   │   ├── Application.myapp
│   │   ├── AssemblyInfo.vb
│   │   ├── Resources.Designer.vb
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.vb
│   │   └── Settings.settings
│   ├── UserFunctions.sln
│   └── UserFunctions.vbproj
├── Designer.exe
├── FastReport.Bars.dll
├── FastReport.dll
├── FastReport.Editor.dll
├── FastReport.Install.dll
├── FastReport.VSDesign.dll
├── FastReport.Web.dll
├── FastReport.Web.XML
├── FastReport.xml
├── license.rtf
├── Localization
│   ├── Arabic.frl
│   ├── Chinese (Simplified).frl
│   ├── Chinese (Traditional).frl
│   ├── Croatian.frl
│   ├── Czech.frl
│   ├── Danish.frl
│   ├── Dutch.frl
│   ├── French.frl
│   ├── German.frl
│   ├── Hungarian.frl
│   ├── Italian.frl
│   ├── Persian.frl
│   ├── Polish.frl
│   ├── Portuguese (Brazil).frl
│   ├── Portuguese.frl
│   ├── readme.txt
│   ├── Romanian.frl
│   ├── Russian.frl
│   ├── Serbian.frl
│   ├── Slovak.frl
│   ├── Spanish.frl
│   ├── Swedish.frl
│   ├── Thai.frl
│   ├── Turkish.frl
│   └── Ukrainian.frl
└── Viewer.exe

58 directories, 420 files

标签:

实例下载地址

FastReport的winform官方例子

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警