1. Winform打印服务
这是printf的格式化参数,表示输出一个整型数值,输出宽度为4,且右对齐,如: printf( "%4d", 1 )
; 1 //输出1的前边有3个空格,补齐4位的宽度 printf( "%4d", 11)
; 11 //输出11前边有2个空格,补齐4位的宽度 printf( "%4d", 11111 ); 11111 //因为超过了4位,所以前边没有空格 如果要左对齐,则改为 %-4d
2. Winform打印预览word
使用DSOFramer控件。去年我做过一个项目,就是用这个控件来操作Excel文件的。用它也可以操作word文档。如果不喜欢这个控件,可以使用浏览器控件如WebBroswer来嵌入网页版的word控件。
最后一个方式当然就是操作office的COM接口,不过这个略显复杂。
3. Winform打印2份
1/6分步阅读
准备bartender软件的dll调用文件,根据自己安装的bartender软件的版本来准备,后续会因调用bartender软件的模板而失败。
2/6
打开VS编程软件,按照自己的需求建立好winform界面。
3/6
在项目管理引用中添加引用我们第一步准备好的bartender调用连接dll文件
。4/6
用bartender软件编辑一个打印模板,这里有一个重点就是设置一个变量。这个变量名称会在源代码中调用到
。5/6
编写源代码,我这里附上全部源代码供参考。
using 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 System.IO;
using System.Runtime.InteropServices;
namespace BlueTooth
{
public partial class Form1 : Form
{
string PalletID1;
public static BarTender.Application btapp1;
public static BarTender.Format btFormat1;
public Form1()
{
InitializeComponent();
}
private void BasicSet1()
{
string str1 = System.Windows.Forms.Application.StartupPath + "\\bluet.btw";
btapp1 = new BarTender.ApplicationClass();
btFormat1 = btapp1.Formats.Open(str1, false, "");
}
private void Form1_Load(object sender, EventArgs e)
{
BasicSet1();
}
public void PrintLabel(string PalletID1)
{
btFormat1.SetNamedSubStringValue("TEST", PalletID1);
btFormat1.IdenticalCopiesOfLabel = 1;
btFormat1.PrintOut(false, false);
}
private void print(string label)
{
PalletID1 = textBox1.Text.Trim();
PrintLabel(PalletID1);
}
private void button1_Click(object sender, EventArgs e)
{
print(textBox1.Text.Trim());
}
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
print(textBox1.Text.Trim());
textBox1.SelectAll();
}
}
}
}
4. Winform打印控件
方法1: 在B窗体中添加一个构造函数,如: fromB(Image img) { picturebox.Image=img; } A窗体的按钮事件: fromB frm = new fromB(picturebox.Image); frm.Show(); 方法2: 在B窗体中添加方法,如: public SetImage(Image img) { picturebox.Image=img; } A窗体的按钮事件: fromB frm = new fromB(); frm.SetImage(picturebox.Image); frm.Show();
5. Winform打印excel 控件
用zedgraph,这是开源控件,下载含dll和demo的zedgraph,引用其dll,拖个画布到桌面,赋数据的值图就画出来了 很简单的 待我写个demo,传与你吧
- 相关评论
- 我要评论
-