dec ld_suml
ld_suml=round(dw_9.object.sum_l[1],2)
这样写有什么问题吗?
执行时候报外部对象错误,结束应用程序
sum_1 在dw_9里面绝对有的
------解决方案--------------------
ld_sum1 = round(dw_9.getitemnumber(1,"sum_1"),2)
如果还报错,可能就是没有 行的原因了
------解决方案--------------------
加个判断:
if dw_9.rowscount()> 0 then
ld_sum1 = round(dw_9.getitemnumber(1,"sum_1"),2)
end if