以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  在哪里写报表事件代码?  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=17822)

--  作者:hjq2915
--  发布时间:2012/3/26 9:56:00
--  在哪里写报表事件代码?
 

项目事件

不好意思。示例 条形码与Excel报表.Table  的项目事件的代码(如下的) 如果我写进我的项目该写在哪啊?我在它的项目里也找不见

 

BuildDetail

 

If e.Book.TempLate = "SalesInvoice" Then

    If e.region = "SaleOrderDetail" Then

        If e.DataRow Is Nothing OrElse e.DataRow.IsNull("Lot") 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("Lot")

            Bar.BarRatio = 0.3

            Bar.BarHeight = 8

            bar.SaveImage(ProjectPath & "Images\\BarCode.gif",300)

        End If

    End If

End If


--  作者:狐狸爸爸
--  发布时间:2012/3/26 9:58:00
--  

http://www.foxtable.com/help/topics/1953.htm