91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

.NET中如何使用FastReport實現打印功能

發布時間:2022-03-09 16:08:10 來源:億速云 閱讀:785 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“.NET中如何使用FastReport實現打印功能”,內容詳細,步驟清晰,細節處理妥當,希望這篇“.NET中如何使用FastReport實現打印功能”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

一、新建一個窗體程序,窗體上面有設計界面和預覽界面兩個按鈕,分別對應FastReport的設計和預覽功能,其實現代碼如下:

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)
        {
            // 顯示設計界面
            CreateReport(true);
        }


        private void CreateReport(bool tfDesigin)
        {
            // 獲得當前程序的運行路徑
            string path = Application.StartupPath;
            // 定義報表
            Report report = new Report();
            string strDirectory = path + "\\ReportFiles";

            // 判斷文件路徑是否存在,不存在則創建文件夾
            if (!Directory.Exists(strDirectory))
            {
                // 不存在就創建目錄
                Directory.CreateDirectory(strDirectory);
            }

            // 判斷文件是否存在
            if (!File.Exists(strDirectory + "\\產品明細.frx"))
            {
                report.FileName = strDirectory + "\\產品明細.frx";
            }
            else
            {
                report.Load(strDirectory + "\\產品明細.frx");
            }

            // 創建報表文件的數據源
            DataSet ds = new DataSet();
            DataTable dt = GetDataSource();
            DataTable dtSource = dt.Copy();
            dtSource.TableName = "ProductDetail";
            ds.Tables.Add(dtSource);
            report.RegisterData(ds);

            if (tfDesigin)
            {
                // 打開設計界面
                report.Design();
            }
            else
            {
                // 打開預覽界面
                report.Show();
            }
        }

        private DataTable GetDataSource()
        {
            DataTable dt = new DataTable();
            // 數據庫連接
            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獲取數據
            IDataReader reader = conn.ExecuteReader(strSql);
            dt.Load(reader);
            return dt;
        }

        private void btn_Show_Click(object sender, EventArgs e)
        {
            // 顯示預覽界面
            CreateReport(false);
        }
    }
}

二、運行程序,點擊設計界面,打開FastReport的設計界面:

.NET中如何使用FastReport實現打印功能

三、選擇數據源

在設計之前要先選擇數據源,只有選擇了數據源,報表文件才會有數據。

1、在Data文件夾下面選擇“Choose Report Data”選項:

.NET中如何使用FastReport實現打印功能

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

.NET中如何使用FastReport實現打印功能

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

.NET中如何使用FastReport實現打印功能

四、報表的整體結構:

.NET中如何使用FastReport實現打印功能

五、設計報表標題

1、設計報表標題要使用到“A”控件:

.NET中如何使用FastReport實現打印功能

2、將左側的"A"控件拖拽到報表標題區域:

.NET中如何使用FastReport實現打印功能

3、設置標題:

雙擊報表標題區域的A控件,即可打開輸入標題的界面:

.NET中如何使用FastReport實現打印功能

4、輸入報表標題,點擊“OK”按鈕:

報表標題區域就會顯示設計的標題,并可以設置標題的對齊方式。

.NET中如何使用FastReport實現打印功能

六:設計報表數據區域

1、設計報表數據,要使用到表格控件,表格控件如下圖所示:

.NET中如何使用FastReport實現打印功能

2、將表格拖拽到數據區域,設計表格要顯示的行數和列數:

.NET中如何使用FastReport實現打印功能

3、表格顯示的內容:

.NET中如何使用FastReport實現打印功能

4、表格界面:

.NET中如何使用FastReport實現打印功能

七、設置表格事件

給表格添加數據綁定事件:

.NET中如何使用FastReport實現打印功能

設置了事件以后,雙擊事件即可進入代碼編輯界面,綁定事件的代碼如下:

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)
    {
      // 設置數據源
      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();
      }
    }
  }
}

八、頁腳顯示打印時間:

.NET中如何使用FastReport實現打印功能

九、保存報表格式

設計完報表格式以后,一定要記得保存:

.NET中如何使用FastReport實現打印功能

十、效果

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

.NET中如何使用FastReport實現打印功能

.NET中如何使用FastReport實現打印功能

讀到這里,這篇“.NET中如何使用FastReport實現打印功能”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

廊坊市| 祁门县| 交城县| 聂荣县| 登封市| 玉山县| 天峻县| 乐至县| 黑山县| 互助| 太和县| 静海县| 永州市| 固镇县| 安多县| 科技| 潜江市| 白山市| 江口县| 台东市| 木兰县| 胶南市| 来凤县| 镇平县| 应城市| 东兰县| 芮城县| 内丘县| 宁海县| 和林格尔县| 雷波县| 沾益县| 会昌县| 南和县| 那坡县| 隆安县| 万全县| 颍上县| 南丹县| 巴塘县| 朔州市|