1、setitemstatus:
(1)用法:不等连接时保存表信息:
if dw_2.rowcount()>0 then
dw_2.setredraw(false)
for k=1 to dw_2.rowcount()
if unnull(dw_2.object.fee_name[k])='' or num_unnull(dw_2.object.ap_jine[k])=0 then
dw_2.setitemstatus(k,0,primary!,NEW!)
dw_2.setitemstatus(k,0,Primary!,NOTModified!)
end if
next
dw_2.setredraw(true)
end if
2、modify和 Describe
(1) 修改分组宽度:
dw_1.modify("DataWindow.trailer.2.height = 0")
(2) 修改明细宽度
dw_1.modify("DataWindow.detail.height = 0")
(3) 获取明细宽度
dw_1.Describe("datawindow.detail.height")