以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]如何将ComboBOX的值引用到表中  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=158181)

--  作者:shming
--  发布时间:2020/11/10 17:08:00
--  [求助]如何将ComboBOX的值引用到表中
问题1.如何将ComboBOX的值引用到表中,问题描述:如果订单录入窗口中的table表中录有n个产品,要把Combobox订单号分别引入到n个产品的订单号列
问题2. 如何查找并删除表中所有的空行

盼大师指导,谢谢!

--  作者:有点蓝
--  发布时间:2020/11/10 17:21:00
--  
1、
for each r as row in tables("A").rows
r("订单") = e.form.controls("Combobox1").text
next

2、
for i as integer = tables("A").rows.count - 1 to 0 step  -1
if tables("A").rows(i).isnull("订单号") ‘如果订单号为空
tables("A").rows(i).delete
end if
next

--  作者:shming
--  发布时间:2020/11/12 8:03:00
--  
非常感谢您,老师,我的问题在您的帮助下已解决,谢谢,祝您工作顺利,身体强健,全家幸福!