以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 模糊显示 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=132382) |
||||||||
-- 作者:有点甜 -- 发布时间:2019/3/20 21:07:00 -- 参考
http://www.foxtable.com/webhelp/scr/0943.htm
|
||||||||
-- 作者:有点甜 -- 发布时间:2019/3/20 22:33:00 -- 参考
|
||||||||
-- 作者:有点蓝 -- 发布时间:2019/3/21 9:36:00 -- 测试有问题了,输入“一”,可以查询出项目一。如果需要查的数据没有加载,要先把数据加载出来。或者把筛选改为加载 |
||||||||
-- 作者:有点蓝 -- 发布时间:2019/3/21 12:00:00 -- 筛选改为加载,比如 Dim drp As WinForm.DropDownBox = e.sender If drp.DroppedDown Then \'如果下拉窗口已经打开 Dim tbl As Table = Tables("下拉窗口_Table1") Dim filter As String = "" If drp.Text > "" Then \'如果内容为空 Dim txt As String = "\'%" & drp.Text & "%\'" filter = "第一列 Like " & txt End If tbl.DataTable.LoadFilter = filter tbl.DataTable.Load End If |
||||||||
-- 作者:有点甜 -- 发布时间:2019/4/24 15:17:00 -- 以下是引用nuoyan88在2019/4/24 15:09:00的发言:
老师,DropDownBox这种类型的控件怎么实现CheckedComboBox这种控件的多选功能呢?谢谢
在你的下拉窗口那里,加入一个CheckedListBox控件,即可 http://www.foxtable.com/webhelp/scr/0948.htm
|