haopp1 发表于 2022-2-5 13:44:18

C#BarTender二次开发示例转AV3

BarTender核心代码:                btFormat = btAPP.Formats.Open(System.Windows.Forms.Application.StartupPath+@"\1.btw", false, "");
                btFormat.PrintSetup.IdenticalCopiesOfLabel = 1;//打印份数
                btFormat.PrintSetup.NumberSerializedLabels = 1;//序列标签数
                btFormat.SetNamedSubStringValue("打印文本", txtMemo.Text.Trim());
                btFormat.SetNamedSubStringValue("打印条码", txtBarcode.Text.Trim());
                btFormat.PrintOut(true, true);//第二个false设置打印时是否跳出打印属性
                btFormat.Close(BarTender.BtSaveOptions.btDoNotSaveChanges); //退出时是否保存标签


- - 。求一位大佬转一下AV3!!

虫子樱桃 发表于 2022-2-10 15:33:27

au3无法调用.net的dll 你可能需要这个库 中转下
https://www.autoitscript.com/forum/topic/188158-net-common-language-runtime-clr-framework/

haopp1 发表于 2022-2-12 21:58:34

虫子樱桃 发表于 2022-2-10 15:33
au3无法调用.net的dll 你可能需要这个库 中转下
https://www.autoitscript.com/forum/topic/188158-net-co ...

谢谢虫老板
页: [1]
查看完整版本: C#BarTender二次开发示例转AV3