以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  关于DataColChanged  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=92010)

--  作者:yjf123
--  发布时间:2016/10/24 14:21:00
--  关于DataColChanged

DataColChanged中下面代码会不会陷入死循环?如何解决该问题呢?

 

If e.DataCol.name="单价"  Then
    e.DataRow("金额")=e.DataRow("数量")*e.DataRow("单价")
End If

 

If e.DataCol.name="金额" Then
    e.DataRow("单价")=e.DataRow("金额")/e.DataRow("单价")
End If


--  作者:有点蓝
--  发布时间:2016/10/24 15:54:00
--  
参考:http://www.foxtable.com/webhelp/scr/2218.htm

If e.DataCol.name="单价"  Then
SystemReady = false
    e.DataRow("金额")=e.DataRow("数量")*e.DataRow("单价")
SystemReady = true
End If