Foxtable(狐表)用户栏目专家坐堂 → 求解


  共有4152人关注过本帖树形打印复制链接

主题:求解

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110802 积分:563948 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/11/7 20:45:00 [显示全部帖子]

要使用代码处理,1楼那个是表达式设计器,是不能写代码的。表达式和代码不是一回事。

代码要到各个事件里写:http://www.foxtable.com/webhelp/topics/1445.htm

3楼的用法可以到表格表属性datacolchanged事件处理:http://www.foxtable.com/webhelp/topics/0625.htm
if e.datacol.name = "FH" then
    If e.DataRow.IsNull("FH"Then 
        e.
DataRow("批号") = Nothing 
        e.
DataRow("料号") = Nothing
    
Else
dim ss() as string = e.DataRow("FH").split("@")
        e.
DataRow("批号") = ss(0)
if ss.length > 1 then
        e.
DataRow("料号") = ss(1)
endif
    End
 If
end if

 回到顶部