以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]为什么商品标识列会消失?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=116646)

--  作者:youngerlsy
--  发布时间:2018/3/28 17:29:00
--  [求助]为什么商品标识列会消失?

按商品标识列关联

父表有 库存重量 列

在项目事件maintablechanged中设置的代码:

if maintable.name = "仓库存量" then

     dim dmp as new tabledatemap

     dmp.datatable = "仓库存量"

     dmp.valuecol = "商品标识"

     dmp.displaycol = "商品标识"

     dmp.filter =  "库存重量 > 0"

     tables("订单").cols("商品标识").dmp.createdatamap()

end if

我的想法是在子表商品标识列中选不到库存重量<=0的商品标识,但父表某商品的库存重量原来是100的,在子表商品标识是可以选到这个商品的,但是子表出库重量输入100后,父表库存重量清0,子表这一行的商品标识自动不见了,怎么解决?

[此贴子已经被作者于2018/3/28 17:30:01编辑过]

--  作者:有点甜
--  发布时间:2018/3/28 17:47:00
--  

这种情况,你就不能使用【数据字典】处理了。使用列表项目吧

 

http://www.foxtable.com/webhelp/scr/0057.htm

 

http://www.foxtable.com/webhelp/scr/1457.htm

 


--  作者:youngerlsy
--  发布时间:2018/3/28 17:51:00
--  
我试下,谢谢