以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 生成的条件码会改变 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=72695) |
||||||||
-- 作者:lihe60 -- 发布时间:2015/8/4 17:41:00 -- 生成的条件码会改变 完全按照“CaseStudy目录下的文件:条形码与Excel报表.Table"做的。 右图是根据左图生成的条形码,为什么数据发生改变。
[此贴子已经被作者于2015/8/4 17:41:31编辑过]
|
||||||||
-- 作者:lihe60 -- 发布时间:2015/8/4 17:42:00 -- If e.Book.TempLate = "工装加工工作卡" Then If e.region = ywkt.name Then If e.DataRow Is Nothing OrElse e.DataRow.IsNull("条码") Then \'如果是空行或者Lot列为空 Dim img As New System.Drawing.Bitmap(1,1) \'生成一个空白图片 img.Save(ProjectPath & "Images\\BarCode.gif") Else \'否则生成条形码图片 Dim Bar As New BarCodeBuilder Bar.Symbology = Barpro.Symbology.Code39 Bar.Code = e.DataRow("条码") Bar.BarRatio = 0.3 Bar.BarHeight = 8 bar.SaveImage(ProjectPath & "Images\\BarCode.gif",300) End If End If End If |
||||||||
-- 作者:lihe60 -- 发布时间:2015/8/4 18:04:00 --
[此贴子已经被作者于2015/8/4 18:04:33编辑过]
|
||||||||
-- 作者:大红袍 -- 发布时间:2015/8/4 18:15:00 -- 加一句
bar.DisplayChecksum = false bar.DisplayStartStopChar = False |