• 大小: 1.65MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-01
  • 语言: C#
  • 标签: C#  FastReport  报表  源代码  

资源简介

我的便宜 C# 部分的全部源代码都在里面。其中BaseReport.dll是delphi做的FastReport报表dll,这个源代码是不公开的,但是功能没有限制。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace FastReport_Demo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender EventArgs e)
        {
            ReportClass.FastReportShow(bindingSource1 “Demo1“);
        }

        private void Form1_Shown(object sender EventArgs e)
        {
            for (int i = 0; i < 10000; i++)
            {
                dataSet1.Tables[0].Rows.Add(i.ToString() i.ToString(“行数 #0“));
            }

            bindingSource1.DataSource = dataSet1.Tables[0];
            dataGridView1.DataSource = bindingSource1;

        }

        private void button4_Click(object sender EventArgs e)
        {
            Close();
        }

        private void button2_Click(object sender EventArgs e)
        {
            ReportClass.FastReportDesigner(bindingSource1 “Demo1“);

        }

        private void button3_Click(object sender EventArgs e)
        {
            ReportClass.FastReportPrint(bindingSource1 “Demo1“);

        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        120  2009-06-02 15:04  FastReport_Demo\FastReport_Demo\app.config

     文件     840192  2009-04-26 16:20  FastReport_Demo\FastReport_Demo\baseReport.dll

     文件     840192  2009-04-26 16:20  FastReport_Demo\FastReport_Demo\bin\Release\baseReport.dll

     文件      14336  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\bin\Release\FastReport_Demo.exe

     文件        120  2009-06-02 15:04  FastReport_Demo\FastReport_Demo\bin\Release\FastReport_Demo.exe.config

     文件      36352  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\bin\Release\FastReport_Demo.pdb

     文件      14328  2009-11-11 18:59  FastReport_Demo\FastReport_Demo\bin\Release\FastReport_Demo.vshost.exe

     文件        120  2009-06-02 15:04  FastReport_Demo\FastReport_Demo\bin\Release\FastReport_Demo.vshost.exe.config

     文件        490  2007-07-21 01:33  FastReport_Demo\FastReport_Demo\bin\Release\FastReport_Demo.vshost.exe.manifest

     文件       1846  2009-06-02 14:24  FastReport_Demo\FastReport_Demo\bin\Release\Reports\Demo1.fr3

     文件       6398  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\FastReport_Demo.csproj

     文件        571  2009-06-02 14:32  FastReport_Demo\FastReport_Demo\FastReport_Demo.csproj.user

     文件       1293  2009-06-02 14:49  FastReport_Demo\FastReport_Demo\Form1.cs

     文件       8142  2009-06-02 14:26  FastReport_Demo\FastReport_Demo\Form1.Designer.cs

     文件       6213  2009-06-02 14:26  FastReport_Demo\FastReport_Demo\Form1.resx

     文件        756  2009-06-02 14:20  FastReport_Demo\FastReport_Demo\obj\Debug\FastReport_Demo.csproj.FileListAbsolute.txt

     文件        847  2009-06-02 14:19  FastReport_Demo\FastReport_Demo\obj\Debug\FastReport_Demo.csproj.GenerateResource.Cache

     文件      13312  2009-06-02 14:22  FastReport_Demo\FastReport_Demo\obj\Debug\FastReport_Demo.exe

     文件        180  2009-06-02 14:22  FastReport_Demo\FastReport_Demo\obj\Debug\FastReport_Demo.Form1.resources

     文件      30208  2009-06-02 14:22  FastReport_Demo\FastReport_Demo\obj\Debug\FastReport_Demo.pdb

     文件        180  2009-06-02 14:22  FastReport_Demo\FastReport_Demo\obj\Debug\FastReport_Demo.Properties.Resources.resources

     文件       1051  2009-11-11 18:59  FastReport_Demo\FastReport_Demo\obj\Release\FastReport_Demo.csproj.FileListAbsolute.txt

     文件        909  2009-06-02 15:25  FastReport_Demo\FastReport_Demo\obj\Release\FastReport_Demo.csproj.GenerateResource.Cache

     文件      14336  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\obj\Release\FastReport_Demo.exe

     文件        180  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\obj\Release\FastReport_Demo.Form1.resources

     文件      36352  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\obj\Release\FastReport_Demo.pdb

     文件        180  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\obj\Release\FastReport_Demo.Properties.Resources.resources

     文件       1018  2009-11-11 19:00  FastReport_Demo\FastReport_Demo\obj\Release\FastReport_Demo.Resource1.resources

     文件       5632  2009-06-02 15:25  FastReport_Demo\FastReport_Demo\obj\Release\TempPE\Resource1.Designer.cs.dll

     文件        476  2009-06-02 14:49  FastReport_Demo\FastReport_Demo\Program.cs

............此处省略26个文件信息

评论

共有 条评论