.NET使用報表工具FastReport實現(xiàn)打印功能
FastReport是功能非常強大的報表工具,在本篇文章中講解如何使用FastReport實現(xiàn)打印功能。
一、新建一個窗體程序,窗體上面有設(shè)計界面和預(yù)覽界面兩個按鈕,分別對應(yīng)FastReport的設(shè)計和預(yù)覽功能,其實現(xiàn)代碼如下:
using FastReport;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Dapper;
namespace FastReportDemo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btn_Design_Click(object sender, EventArgs e)
{
// 顯示設(shè)計界面
CreateReport(true);
}
private void CreateReport(bool tfDesigin)
{
// 獲得當(dāng)前程序的運行路徑
string path = Application.StartupPath;
// 定義報表
Report report = new Report();
string strDirectory = path + "\\ReportFiles";
// 判斷文件路徑是否存在,不存在則創(chuàng)建文件夾
if (!Directory.Exists(strDirectory))
{
// 不存在就創(chuàng)建目錄
Directory.CreateDirectory(strDirectory);
}
// 判斷文件是否存在
if (!File.Exists(strDirectory + "\\產(chǎn)品明細(xì).frx"))
{
report.FileName = strDirectory + "\\產(chǎn)品明細(xì).frx";
}
else
{
report.Load(strDirectory + "\\產(chǎn)品明細(xì).frx");
}
// 創(chuàng)建報表文件的數(shù)據(jù)源
DataSet ds = new DataSet();
DataTable dt = GetDataSource();
DataTable dtSource = dt.Copy();
dtSource.TableName = "ProductDetail";
ds.Tables.Add(dtSource);
report.RegisterData(ds);
if (tfDesigin)
{
// 打開設(shè)計界面
report.Design();
}
else
{
// 打開預(yù)覽界面
report.Show();
}
}
private DataTable GetDataSource()
{
DataTable dt = new DataTable();
// 數(shù)據(jù)庫連接
string strCon = @"Initial Catalog=StudentSystem; Integrated Security=False;User Id=sa;Password=1qaz@WSX;Data Source=127.0.0.1;Failover Partner=127.0.0.1;Application Name=TransForCCT";
SqlConnection conn = new SqlConnection(strCon);
string strSql = @"SELECT p.ProductId,p.ProductName,p.Price,c.CategoryName FROM ProductDetail p INNER JOIN Category c
ON p.CategoryId=c.CategoryId";
// 使用Dapper獲取數(shù)據(jù)
IDataReader reader = conn.ExecuteReader(strSql);
dt.Load(reader);
return dt;
}
private void btn_Show_Click(object sender, EventArgs e)
{
// 顯示預(yù)覽界面
CreateReport(false);
}
}
}二、運行程序,點擊設(shè)計界面,打開FastReport的設(shè)計界面:

三、選擇數(shù)據(jù)源
在設(shè)計之前要先選擇數(shù)據(jù)源,只有選擇了數(shù)據(jù)源,報表文件才會有數(shù)據(jù)。
1、在Data文件夾下面選擇“Choose Report Data”選項:

2、在Choose Report Data界面選擇程序中要用到的數(shù)據(jù)源:

3、點擊“OK”按鈕以后,在設(shè)計界面的右側(cè)會顯示選擇的數(shù)據(jù)源:

四、報表的整體結(jié)構(gòu):

五、設(shè)計報表標(biāo)題
1、設(shè)計報表標(biāo)題要使用到“A”控件:

2、將左側(cè)的"A"控件拖拽到報表標(biāo)題區(qū)域:

3、設(shè)置標(biāo)題:
雙擊報表標(biāo)題區(qū)域的A控件,即可打開輸入標(biāo)題的界面:

4、輸入報表標(biāo)題,點擊“OK”按鈕:
報表標(biāo)題區(qū)域就會顯示設(shè)計的標(biāo)題,并可以設(shè)置標(biāo)題的對齊方式。

六:設(shè)計報表數(shù)據(jù)區(qū)域
1、設(shè)計報表數(shù)據(jù),要使用到表格控件,表格控件如下圖所示:

2、將表格拖拽到數(shù)據(jù)區(qū)域,設(shè)計表格要顯示的行數(shù)和列數(shù):

3、表格顯示的內(nèi)容:

4、表格界面:

七、設(shè)置表格事件
給表格添加數(shù)據(jù)綁定事件:

設(shè)置了事件以后,雙擊事件即可進(jìn)入代碼編輯界面,綁定事件的代碼如下:
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing;
using System.Data;
using FastReport;
using FastReport.Data;
using FastReport.Dialog;
using FastReport.Barcode;
using FastReport.Table;
using FastReport.Utils;
namespace FastReport
{
public class ReportScript
{
private void Table1_ManualBuild(object sender, EventArgs e)
{
// 設(shè)置數(shù)據(jù)源
DataSourceBase rowData = Report.GetDataSource("ProductDetail");
rowData.Init();
Table1.PrintRow(0);
Table1.PrintColumns();
bool tfvar = false;
while (rowData.HasMoreRows)
{
tfvar = true;
Table1.PrintRow(1);
Table1.PrintColumns();
rowData.Next();
}
if (!tfvar)
{
Table1.PrintRow(2);
Table1.PrintColumns();
}
}
}
}八、頁腳顯示打印時間:

九、保存報表格式
設(shè)計完報表格式以后,一定要記得保存:

十、效果
因為界面太大,所以分了兩個截圖顯示:


到此這篇關(guān)于.NET使用報表工具FastReport實現(xiàn)打印功能的文章就介紹到這了。希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Asp.net mvc 權(quán)限過濾和單點登錄(禁止重復(fù)登錄)
這篇文章主要介紹了Asp.net mvc 權(quán)限過濾和單點登錄(禁止重復(fù)登錄)的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-12-12
.net數(shù)據(jù)庫連接池配置技巧(默認(rèn)值)
ado.net 本就有連接功能,所有.net開法基本不用去考慮連接問題,怪不得.net的連接池資料網(wǎng)上找不到。.net連接池只要在連接字符串里配制就可以了2008-12-12
asp.net 動態(tài)生成rdlc報表(原創(chuàng))
因為公司需求 研究微軟的Reportviewer 因為有許多特別要求所以動態(tài)調(diào)用 比較靈活 我的需求是 根據(jù)數(shù)據(jù)不同的合并表頭 (參考了隨心所欲的博客文檔 再次表示感謝)2011-12-12
.NET?Core使用Redis實現(xiàn)創(chuàng)建分布式鎖
分布式鎖一般用于確保在分布式系統(tǒng)中,同一時間只有一個進(jìn)程可以執(zhí)行某段代碼,本文將通過.NET?Core使用Redis實現(xiàn)創(chuàng)建分布式鎖,感興趣的可以了解下2025-01-01
ASP.net Substitution 頁面緩存而部分不緩存的實現(xiàn)方法
在ASP.NET中要實現(xiàn)部分內(nèi)容非緩存,而其它的都需要緩存輸出,可以使用Substitution控件實現(xiàn).2009-03-03

