以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  提取空值  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=43023)

--  作者:Liangcai
--  发布时间:2013/11/28 13:30:00
--  提取空值

Dim cmb As WinForm.ComboBox = e.Sender
Dim str As String = e.Form.Controls("物品编号").text
cmb.ComboList = DataTables("固定资产注销").GetComboListString("物品编号",Tables("固定资产注销").Current("注销原因 Is null"))

求注销原因列为空值的代码

[此贴子已经被作者于2013-11-28 13:31:22编辑过]

--  作者:blackzhu
--  发布时间:2013/11/28 13:46:00
--  
Dim cmb As WinForm.ComboBox = e.Sender
Dim str As String = e.Form.Controls("物品编号").text
cmb.ComboList = DataTables("固定资产注销").GetComboListString("物品编号","注销原因 Is null")
--  作者:Liangcai
--  发布时间:2013/11/28 17:30:00
--  
谢谢