标签:
String ls_filter
DataWindowChild dwc_czrw,dwc_czx//定义子数据窗口变量
dw_dy.Settransobject(sqlca)
dw_dy.Retrieve()
dw_dy.GetChild("dw_2",dwc_czrw)
dw_dy.Getchild("dw_1",dwc_czx)
ls_filter = "czrw_bh = ‘"+dw_3.GetItemString(dw_3.GetRow(),"czrw_bh")+"‘"//过滤条件
dwc_czrw.SetFilter(ls_filter)
dwc_czrw.Filter()
ls_filter = "czx_rwbh = ‘"+dw_3.GetItemString(dw_3.GetRow(),"czrw_bh")+"‘"
dwc_czx.SetSort("czx_sx A")
dwc_czx.Sort()
dwc_czx.SetFilter(ls_filter)
dwc_czx.filter()
标签:
原文地址:http://www.cnblogs.com/figo--fiona/p/4704235.html