博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通用表格打印 示例
阅读量:6375 次
发布时间:2019-06-23

本文共 2582 字,大约阅读时间需要 8 分钟。

//本示例需要通用表格打印1或2,以及接口和Code128条码生成一起使用

sing System;

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

namespace DemoTableXReport
{
public partial class Form1 : Form
{
private DataSet dataSet1;
public Form1()
{
InitializeComponent();

}

private void Form1_Load(object sender, EventArgs e)

{

//读入数据到dataSet

dataSet1 = new DataSet();
dataSet1.ReadXml(Application.StartupPath+ "\\testReport.xml", System.Data.XmlReadMode.ReadSchema);
dataGridView1.DataSource = dataSet1;
dataGridView1.DataMember = dataSet1.Tables[0].TableName;
}

private void button1_Click(object sender, EventArgs e)

{
iTableReport xtr = new ctlTableReport();
xtr.AddReportTitle("测试上1(center)", true, null, StringAlignment.Center, Size.Empty);
xtr.AddReportTitle("测试上2(far)", true, null, StringAlignment.Far, Size.Empty);
xtr.AddReportTitle("测试下1(center)", false, null, StringAlignment.Center, Size.Empty);
xtr.AddReportTitle("测试下2(near){0}", false);
xtr.AddReportField("编 号", null, "药品目录", StringAlignment.Near, null, false, string.Empty, true, string.Empty, Size.Empty);
xtr.AddReportField("名 称", "名称");
xtr.AddReportField("规 格2", null, "规格", StringAlignment.Near, null, false, "合计", false, string.Empty, Size.Empty);
xtr.AddReportField("零 售 价3", null, "零售价", StringAlignment.Far, null, false, "", true, "{0:#0.00}", Size.Empty);
xtr.SetReportBarCode("A202010", new Point(100, 0), new Size(500, 100), true, string.Empty);
//int r = xtr.GetAutoRow(dataSet1.Tables[0].Rows.Count, 40);
//xtr.SetReportMain(100, r, ReportGridLine.Nothing, StringAlignment.Center, false, new System.Drawing.Printing.Margins(80, 80, 100, 80), System.Drawing.Printing.PaperKind.Custom, Size.Empty, 1, 0, "", true, 1);
xtr.SetReportMain(100, 20, ReportGridLine.Nothing, StringAlignment.Center, false, new System.Drawing.Printing.Margins(80, 80, 100, 80), System.Drawing.Printing.PaperKind.Custom, Size.Empty, 1, 0, "", false , 1);
xtr.UnitAfterPrint += new ReportUnitAfterPrint(xtr_UnitAfterPrint);
xtr.DataSource = dataSet1.Tables[0];
xtr.ShowDialog();
}
void xtr_UnitAfterPrint(object sender, ReportBandType source, int PageIndex, int RowIndex, string Caption, string Field, ref string Value, EventArgs e)
{

//if (source == ReportBandType.PageFooder)

// Value = string.Format("{0}",PageIndex+1);
//throw new NotImplementedException();
}
void xtr_UnitAfterPrint(object sender, int source, int PageIndex, int RowIndex, string Caption, string Field, ref string Value, EventArgs e)
{
//在此可以校正打印的内容和格式

}

}
}

转载地址:http://xgcqa.baihongyu.com/

你可能感兴趣的文章
控件服务器端服务器控件与客户端控件
查看>>
2013年5月18日星期六
查看>>
优化网站设计(三十):优化CSS sprites
查看>>
js 字符串操作函数集合
查看>>
悟透JavaScript
查看>>
nullnullCF 312B(Archer-等比数列极限求和)
查看>>
消息函数windows 程序设计 第三章 (下)
查看>>
java中调用web中的jsp或servlet去通知它们做一些操作
查看>>
Javascript 坦克大战
查看>>
JavaScript自动设置IFrame高度(兼容各主流浏览器)
查看>>
Linux内核中__init, __initdata, __initfunc(), asmlinkage, ENTRY(), FASTCALL()等作用
查看>>
leetcode -- Two Sum
查看>>
Windows多线程
查看>>
Resolve PSExec "Access is denied"
查看>>
C语言局部变量和全局变量问题汇总
查看>>
android 下的网络图片加载
查看>>
由浅入深探究mysql索引结构原理、性能分析与优化
查看>>
Paip.语义分析----情绪情感词汇表总结
查看>>
Linux下软件安装,卸载,管理
查看>>
基于注解风格的Spring-MVC的拦截器
查看>>