XtraReport 实例化 打印

// Create a report instance, assigned to a Print Tool.
    ReportPrintTool pt = new ReportPrintTool(new XtraReport1());

// Invoke the Print dialog.
    pt.PrintDialog();

// Send the report to the default printer.
    pt.Print();

// Send the report to the specified printer.
    pt.Print("myPrinter");

时间: 2024-10-27 05:30:27

XtraReport 实例化 打印的相关文章

.Net(c#)打印--多页打印

如果要实现多页打印,就要使用PrintPageEventArgs类的HasMorePages属性. 我们对之前的代码作如下变更:      增加PrintDocument的BeginPrint和EndPrint事件. BeginPrint事件用于得到被打印的内容. EndPrint用于释放资源. PrintDocument的PrintPage事件中实现分页.      基中:BeginPrint的事件方法在PrintPage事件方法前被呼叫.             PintPage的事件方法在

C#条码生成及打印实例代码

string BarcodeString = "13043404455";//条码 int ImgWidth = 520; int ImgHeight = 120; //打印按钮 private void button1_Click(object sender, EventArgs e) { //实例化打印对象 PrintDocument printDocument1 = new PrintDocument(); //设置打印用的纸张,可以自定义纸张的大小(单位:mm). 当打印高度不

DevExpress.chartContro控件保存图片和打印图片

private void pictureBox1_Click(object sender, EventArgs e) { ////实例化打印对象 PrintDocument print = new PrintDocument(); //打印事件 print.PrintPage += new PrintPageEventHandler(print_PrintPage); //开始打印 PrintDialog pd = new PrintDialog(); if (pd.ShowDialog() =

C#winfrom打印与打印预览

引入printDocument控件 /// <summary> /// 打印方法 /// </summary> public void Print() { //实例化打印对象 PrintDocument printDocument1 = new PrintDocument(); //设置打印用的纸张,当设置为Custom的时候,可以自定义纸张的大小 printDocument1.DefaultPageSettings.PaperSize = new PaperSize("

一个可以在针式打印机上打印的Java样例

代码: import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.print.PageFormat; import java.awt.print.Paper; import java.awt.print.Printable; import java.awt.print.PrinterException; import java

C# WinfForm 控件之dev报表 XtraReport

这个控件其实用法和fast也差不了太多但如果没接触过 真有种老虎吃天的感觉 1.这里先不说那些高深的先说最基本的 在窗体中显示一个设计好的 模版 1.1一般设计和这个程序是分着的为了方便我就先把他们合到一起 先建一个winform application  在form1中放一个button 1,2右击程序 添加新项  如下图 选devExpress V16.1ReportWizard 点添加 弹出的对话框中选Empty Report 1.3设计视图先随便加几个XLabel 加个ReportHea

PrintDocument,PrintDialog与PrintPreviewDialog

1.使用PrintDocument进行打印 using System; using System.Drawing; using System.Drawing.Printing; using System.Windows.Forms; namespace PrintTest { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object

C# winfrom FastReport Print

1.引用 using FastReport; using FastReport.Barcode; 2.code private void toolStripButtonPrint_Click(object sender, EventArgs e) { string textNewdate = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); string textBarcode=string.Empty; try { //seleCord =

Java——TCP

import java.io.PrintStream; import java.net.ServerSocket; import java.net.Socket; //================================================= // File Name : HelloServer_demo //------------------------------------------------------------------------------ //