以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助] (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=71801) |
-- 作者:cjz7120641 -- 发布时间:2015/7/18 11:23:00 -- [求助] 我想让我输入的后面自己加个后缀 If e.DataRow("分箱装") IsNot Nothing Then e.DataRow("分箱装")= e.DataRow ("分箱装") & "箱" End If 这个用了之后他就无限加了箱,怎么改才能让他只加一个箱字
|
-- 作者:狐狸爸爸 -- 发布时间:2015/7/18 11:26:00 -- if e.DataRow("分箱装") Like "*箱" = False Then e.DataRow("分箱装")= e.DataRow ("分箱装") & "箱" End If |
-- 作者:有点蓝 -- 发布时间:2015/7/18 11:27:00 -- 你的事件写在哪个下面? |