以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]“窗口中的动态列表项目”能不能设计成“复选组合框”  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=150069)

--  作者:liuzhong
--  发布时间:2020/5/20 9:49:00
--  [求助]“窗口中的动态列表项目”能不能设计成“复选组合框”
老师:您好!
使用指南中:

设计的步骤为:

1、在窗口的AfterLoad事件中加入代码:

Dim cmb As WinForm.ComboBox = e.form.Controls("ComboBox1")
cmb.ComboList =
DataTables("表A").GetComboListString("型号")

2、在ComboBox2的Enter事件中加入代码:

Dim cmb As WinForm.ComboBox = e.Sender
Dim
str As string = e.Form.Controls("ComboBox1").Value
cmb.ComboList =
DataTables("表A").GetComboListString("规格", "型号 = \'" & str & "\'"
)

3、最后在ComboBox3的Enter事件中加入代码:

Dim cmb As WinForm.ComboBox = e.Sender
Dim
str As String = e.Form.Controls("ComboBox2").Value
cmb
.ComboList = DataTables("表A").GetComboListString("颜色", "规格 = \'" & str & "\'"
)


请问:这个能不能设计成“复选组合框”。

   望不吝指教!谢谢!


--  作者:有点蓝
--  发布时间:2020/5/20 9:56:00
--  
可以,比如第一个是“复选组合框”

cmb.ComboList = DataTables("表A").GetComboListString("规格""型号 in (\'" & str.replace(",","\',\'") & "\')")