Delphi+Codesoft 7.0 调用条码格式文件打印

时间:2012-01-06 11:00:16
【文件属性】:

文件名称:Delphi+Codesoft 7.0 调用条码格式文件打印

文件大小:284KB

文件格式:RAR

更新时间:2012-01-06 11:00:16

Delphi Codesoft 打印 条码 条形码

Delphi+Codesoft 7.0 调用条码格式文件打印 现附上部分源码(附件中有一个条码格式文件,可设置3个条码,可直接从ERP系统中读取物料编码,名称和规格资料,需要 CodeSoft 7.0 支持,有问题请 email: bambuz@126.com): procedure TFormMain.btnPrintClick(Sender: TObject); Var s: string; i : Integer; BarApp,BarDoc,BarVars:Variant; // OLE 变量 Begin if not FileExists(edtBClabelName.Text) then begin stat.Panels[2].Text := 'The Barcode Document is not Exists.'; ShowMessage('The Barcode Document is not Exists.'); Exit; btnOpen.SetFocus; end; BarApp := CreateOleObject('lppx.Application'); //arApp.Visible:=True; BarApp.Visible:=False; BarDoc:=BarApp.ActiveDocument; BarVars:=BarDoc.Variables; BarDoc.Open(edtBClabelName.Text); // 变量赋值 if chkParam.Checked then begin BarDoc.Variables.Item('var1').Value:= edtPN.Text; BarDoc.Variables.Item('var2').Value:= edtPartName.Text; BarDoc.Variables.Item('var3').Value:= edtDesc.Text; end; // 打印标签 Bardoc.Printlabel(seqty.Value); // Feed BarDoc.FormFeed; // 关闭 Bardoc.Close; BarApp.Quit; End;


【文件预览】:
Lppx.exe
INVMB.lab

网友评论

  • 骗子,没有源文件
  • 谢谢,正需要。
  • 参考一下,学习了。多谢分享。只是代码内容不深入。
  • 看了,没有我需要的,要是能自动切换打印机就好。。
  • 很不错的源码。可以参考使用
  • 没有源代码很失望.
  • 还是不很明白啊!是我太笨了?
  • 使用Delphi + Codesoft ,开发了个条形码打印程序,不错。谢谢。 自己使用Delphi画出来的条形码(Code 128B),总有些不能读出来,至今没找到原因,只好技术使用CodeSoft了
  • 能不能传入值后,打印成txt呢
  • 感謝提供,按照信息,可以實現對codesoft進行變量賦值