以文本方式查看主题

-  蓝色快车PB俱乐部论坛  (http://pb.besoft.com.cnhttp://pb.besoft.com.cn/bbs/index.aspindex.asp)
--  PowerBuilder MIS编程  (http://pb.besoft.com.cnhttp://pb.besoft.com.cn/bbs/index.aspbbs.asp?boardid=1)
----  child datawindow 的retrieve问题  (http://pb.besoft.com.cnhttp://pb.besoft.com.cn/bbs/index.aspdispbbs.asp?boardid=1&rootid=3025&id=3025)


--  作者:foxsha257
--  发布时间:2005/5/20 16:11:23

--  child datawindow 的retrieve问题
child datawindow 的retrieve时怎样用条件retrieve
帮帮忙!
谢了啊!!!
--  作者:liuxing
--  发布时间:2005/5/22 14:53:27

--  
一般使用Filter方法
--  作者:beadle
--  发布时间:2005/5/22 22:27:46

--  
将child datawindow设为“非”auto retrieve,在装有DW CONTROL窗口中用getchild方法获得child datawindow,再RETRIEVE,一般先RETRIEVE父,再RETRIEVE子

DataWindowChild dwc_orders
dwc_account.GetChild("level", dwc_orders)
dwc_orders.SetTransObject(SQLCA)
dwc_orders.Retrieve(level)

系统帮助内有


">