zoukankan      html  css  js  c++  java
  • 苏州 张家港 免费标签(条码)打印软件

    ERP企业资源计划 http://erp.kopsoft.cn/

    开源免费WMS仓库管理系统 http://wms.kopsoft.cn/

    MES制造执行系统 http://mes.kopsoft.cn/

    免费标签(条码)打印软件 http://print.kopsoft.cn/

    SCADA数据采集与监控,电子看板 http://kanban.kopsoft.cn/

    MOM制造运营管理平台 http://mom.kopsoft.cn/

    商务合作:15262337653

    条形码二维码标签打印软件

    C#打印 1.建立PrintDocument对象 2.设置PrintPage打印事件 3.调用Print方法进行打印

    BarcodeWriter用于生成图片格式的条码类,通过Write函数进行输出 BarcodeFormat枚举类型,条形码/二维码 QrCodeEncodingOptions二维码设置选项,继承于EncodingOptions,主要设置宽,高,编码方式等 MultiFormatWriter复合格式条码写码器,通过encode方法得到BitMatrix BitMatrix表示按位表示的二维矩阵数组,元素的值用true和false表示二进制中的1和0

    支持文本、图片、条形码、二维码、直线等对象自由拖拽、删除,纸张尺寸边距设计等, 并可保存为XML模板,可直接打印到打印机,数据源支持XML、EXCEL、数据库等

    ##操作步骤

    • 1.纸张设置:选择纸张尺寸或自定义纸张尺寸
    • 2.条形码;二维码;图片;文本;直线;设置好属性后 插入到编辑界面
    • 3.各对象支持拖拽操作,按Delete可删除当前选中的对象
    • 4.编辑好准备打印的内容后到“打印”TAB页,“保存配置”会将当前内容保存为XML文件
    • 5.保存配置后可以“打印预览”,也可以直接“打印”
    • 6.“读取配置”用于直接读取之前设计好的模板打印样式,文件保存在程序根目录中,默认模板为KopSoft.KopSoftPrint.PrintConfig.xml
                        case "{ProductPrice}":
                            string ProductPrice = null;
                            ProductPrice = KopSoftPrint.ListSource?[KopSoftPrint.rowIndex].ProductPrice;
                            result = result.Replace("{ProductPrice}", ProductPrice);
                            break;
    
                        case "{ProductUnit}":
                            string ProductUnit = null;
                            ProductUnit = KopSoftPrint.ListSource?[KopSoftPrint.rowIndex].ProductUnit;
                            result = result.Replace("{ProductUnit}", ProductUnit);
                            break;
    
                        case "{ProductSize}":
                            string ProductSize = null;
                            ProductSize = KopSoftPrint.ListSource?[KopSoftPrint.rowIndex].ProductSize;
                            result = result.Replace("{ProductSize}", ProductSize);
                            break;
    
                        case "{ProductColor}":
                            string ProductColor = null;
                            ProductColor = KopSoftPrint.ListSource?[KopSoftPrint.rowIndex].ProductColor;
                            result = result.Replace("{ProductColor}", ProductColor);
                            break;
    
                        case "{ProductSupplier}":
                            string ProductSupplier = null;
                            ProductSupplier = KopSoftPrint.ListSource?[KopSoftPrint.rowIndex].ProductSupplier;
                            result = result.Replace("{ProductSupplier}", ProductSupplier);
                            break;
    
                        case "{ProductBatch}":
                            string ProductBatch = null;
                            ProductBatch = KopSoftPrint.ListSource?[KopSoftPrint.rowIndex].ProductBatch;
                            result = result.Replace("{ProductBatch}", ProductBatch);
                            break;
    
                        default: break;
                    }
                }
                return result;
    

      

     

  • 相关阅读:
    ARM中断(一)
    窗口置顶小工具
    volatile关键字
    IIC总线
    ARM中断(三)
    BootLoader —— S3C2440
    视频那些事
    [轉]簡單的顯示隱藏實現
    Apache Service Monitor Start按鈕变灰 的解决方法
    [转载]经典java转码程序,实现native2ascii命令行的功能
  • 原文地址:https://www.cnblogs.com/williamyang3/p/10752970.html
Copyright © 2011-2022 走看看