Foxtable(狐表)用户栏目专家坐堂 → [求助][求助]关于ComboBox的动态列表


  共有4375人关注过本帖树形打印复制链接

主题:[求助][求助]关于ComboBox的动态列表

帅哥,在线噢!
y2287958
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:狐神 帖子:4761 积分:34613 威望:0 精华:0 注册:2008/8/31 22:44:00
  发帖心情 Post By:2014/4/13 14:28:00 [显示全部帖子]

e.Form.Controls("ComboBox1")的TextChanged:(去除e.Form.Controls("ComboBox2")的Enter事件代码

Dim s As String
If DataTables.Contains(e.Sender.Value)
    For Each dc As DataCol In DataTables(e.Sender.Value).DataCols
        s += dc.Name & "|"
    Next
    Dim c As WinForm.ComboBox = e.Form.Controls("ComboBox2")
    c.ComboList = s.TrimEnd("|")
End If

 回到顶部