Foxtable(狐表)用户栏目专家坐堂 → 输入代码中文大写不能正确显示,怎样现在每一份报表页码


  共有2025人关注过本帖平板打印复制链接

主题:输入代码中文大写不能正确显示,怎样现在每一份报表页码

帅哥哟,离线,有人找我吗?
大红袍
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2016/8/17 10:53:00 [只看该作者]

1、

 

For Each dc As DataCol In e.DataTable.DataCols
    If e.DataTable.DataCols.Contains(dc.name & "大写") Then
        If e.DataRow.IsNull(dc.name) = False Then
            e.DataRow(dc.name & "大写") =  CUMoney(format(e.DataRow(dc.name), "0.00"))
        Else
            e.DataRow(dc.name & "大写") =  Nothing
        End If
    End If
Next


 回到顶部