以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 面这段代码 想改成下面这样 应该怎么写 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=67714) |
|
-- 作者:jinzhengbe -- 发布时间:2015/4/29 17:07:00 -- 面这段代码 想改成下面这样 应该怎么写 If e.DataRow("dc") Then e.DataRow("price")=e.DataRow("dc") *e.DataRow("markprice")/100 End If 上面这段代码 想改成下面这样 应该怎么写? 非常非常感谢 If e.DataRow("dc") 或者 e.DataRow("pc") Then e.DataRow("price")=e.DataRow("dc") *e.DataRow("markprice")/100 or e.DataRow("dc")= e.DataRow("price")/ e.DataRow("markprice") End If
|
|
-- 作者:Bin -- 发布时间:2015/4/29 17:12:00 -- if e.DataRow("dc") orelse e.DataRow("pc") then e.DataRow("price")=e.DataRow("dc") *e.DataRow("markprice")/100
else e.DataRow("dc") =e.DataRow("price")/ e.DataRow("markprice") end if |
|
-- 作者:jinzhengbe -- 发布时间:2015/4/29 17:41:00 --
|