FastReport报表使用代码C#.doc_第1页
FastReport报表使用代码C#.doc_第2页
FastReport报表使用代码C#.doc_第3页
FastReport报表使用代码C#.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

using System;using System.Data;using System.ComponentModel;using FastReport;namespace cx / / Summary description for FrxDataSet. / public class FrxDataTable : DataTable private int nItem; TfrxUserDataSetClass m_ds; private DataTable m_ChildTable; public new string TableName get return m_ds.Name; public IfrxDataSet FrxTable get return m_ds as IfrxDataSet; private void constructor(string name) m_ChildTable = null; m_ds = new TfrxUserDataSetClass(); m_ds.OnCheckEOF += new IfrxUserDataSetEvents_OnCheckEOFEventHandler(OnCheckEOFEventHandler); m_ds.OnGetValue += new IfrxUserDataSetEvents_OnGetValueEventHandler(OnGetValueHandler); m_ds.OnFirst += new IfrxUserDataSetEvents_OnFirstEventHandler(OnFirstEventHandler); m_ds.OnNext += new IfrxUserDataSetEvents_OnNextEventHandler(OnNextEventHandler); m_ds.OnPrior += new IfrxUserDataSetEvents_OnPriorEventHandler(OnPriorEventHandler); m_ds.Name = name; DataColumnCollection cols = Columns; cols.CollectionChanged += new CollectionChangeEventHandler(ColumnsCollection_Changed); public FrxDataTable(string name) constructor(name); public FrxDataTable(DataTable t) constructor(t.TableName); string FieldNames = null; foreach (DataColumn col in t.Columns) FieldNames += col.Caption + n; m_ds.Fields = FieldNames; m_ChildTable = t; / / Assigns table to report / public void AssignToDataBand(string BandName, TfrxReportClass report) IfrxComponent frx_component; (IfrxComponent)report).FindObject(BandName, out frx_component); (IfrxDataBand)frx_component).DataSet = (IfrxDataSet)m_ds; / / Assigns table to report / public void AssignToReport(bool Enable, TfrxReportClass report) report.SelectDataset(Enable, m_ds); / / On First event handler / private void OnFirstEventHandler() nItem = 0; / / On Next event handler / private void OnNextEventHandler() nItem+; / / On Prior evene handler / private void OnPriorEventHandler() nItem-; / / On check EndOfFile event handler / private void OnCheckEOFEventHandler(out bool eof) if (m_ChildTable = null) eof = (nItem = Rows.Count); else eof = (nItem = m_ChildTable.Rows.Count); / / On get value handler / private void OnGetValueHandler(object VarName, out object Val) if (m_ChildTable = null) Val = RowsnItemVarName.ToString(); else Val = m_ChildTable.RowsnItemVarName.ToString(); / FastReport does not know about System.Decimal object type / so convert it to Integer if (Val is Decimal) Val = Decimal.ToInt32(Decimal)Val); / / Updates FastReport UserDataSet on Column addition / private void ColumnsCollection_Changed(object sender, CollectionChangeEventArgs e) DataColumnCollection cols = (DataColumnCollection)sender; string FieldNames = null; foreach (DataColumn col in cols) FieldNames += col.Caption + n; m_ds.Fields = FieldNames; Button按钮中的代码 引用FastReport FastReport.TfrxReportClass report = new FastReport.TfrxReportClass(); report.MainWindowHandle = (int)this.Handle; report.LoadReportFromFile(Application.StartupPath + reportzzylb.fr3); alluse.FrxDataTable rptdataset1 = new alluse.FrxDataTable(lab_dwzz); SqlDataAdapter sda = new SqlDataAdapter(select * from lab_dwzz, alluse.Class1.conn1); sda.Fill(rptdataset1); rptdataset1.AssignToReport(true, report); rptdataset1.AssignToDataBand(MasterData1, report);/ MasterData1报表中的主数据 report.ShowReport();以上是成功代码。 private void button2_Click(object sender, EventArgs e) FastReport.TfrxReportClass report = new FastReport.TfrxReportClass(); report.MainWindowHandle = (int)this.Handle; report.LoadReportFromFile(reportjhjl.fr3);/添加报表路径 FrxDataTable rptdataset1 = new FrxDataTable(adoquery1); FrxDataTable rptdataset2 = new FrxDataTable(adoquery2); OleDbDataAdapter oleDbDataAdapter1 = new OleDbDataAdapter(select * from TZ_Unit, Class1.conn1); oleDbDataAdapter1.Fill(rptdataset1); OleDbDataAdapter oleDbDataAdapter2 = new OleDbDataAdapter(listsql, Class1.conn1); oleDbDataAdapte

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论