以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]动态设置列表项目 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=139637) |
-- 作者:wqc360 -- 发布时间:2019/8/17 23:56:00 -- [求助]动态设置列表项目 请老师帮我看看,列表项目各种属性的列的空值判断各书写格式应该怎样才可以,试了一个晚上,没有成功筛选出来。 Dim cmb As WinForm.ComboBox = e.Sender cmb.ComboList = DataTables("表A").GetComboListString("列A", " 字符列 为空 and 日期列 为空 and 数字列 为空 ") 最后加了一个辅助列,选出来了,但这不是个办法呀,请高手赐教,谢谢 Dim cmb As WinForm.ComboBox = e.Sender cmb.ComboList = DataTables("表A").GetComboListString("列A", " 辅助数据列 = 10 " ) |
-- 作者:y2287958 -- 发布时间:2019/8/18 14:27:00 -- is null |
-- 作者:有点蓝 -- 发布时间:2019/8/18 20:27:00 -- cmb.ComboList = DataTables("表A").GetComboListString("列A", " 字符列 is null and 日期列 is null and 数字列 is null ") |
-- 作者:wqc360 -- 发布时间:2019/8/18 22:17:00 -- ok了,谢谢2位老师 |