Foxtable(狐表)用户栏目专家坐堂 → 获取标题名称


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

主题:获取标题名称

帅哥哟,离线,有人找我吗?
狐狸爸爸
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:管理员 帖子:47448 积分:251060 威望:0 精华:91 注册:2008/6/17 17:14:00
  发帖心情 Post By:2011/12/11 20:23:00 [显示全部帖子]

这不是问题吧?

你设置ComboBox2的enter事件:

 

if e.form.Controls("ComboBox1“).Value IsNot Nothing then

       Dim dt AS DataTable = DataTables(e.form.Controls("ComboBox1“).Value)

       dim s as String

       for each dc as datacol in dt.datacols

           s = s & "|" & dc.name

       next

       e.form.Controls("ComboBox2“).Combolist = s

end if


 回到顶部