以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  关于combolist 的值来源于两个表 问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=67520)

--  作者:新航程小何
--  发布时间:2015/4/25 11:17:00
--  关于combolist 的值来源于两个表 问题
各位老师,请问我想combobox 的值是来源两张表的两个列,怎么弄?
以下是我的想法,但是提示数据类型无法转换
Dim cmb As WinForm.ComboBox
cmb = Forms("添加病虫害处理计划").Controls("ComboBox1")
cmb.combolist=DataTables("病害档案").GetComboListString("名称") And DataTables("虫害档案").GetComboListString("名称")

--  作者:Bin
--  发布时间:2015/4/25 11:18:00
--  
cmb.combolist=DataTables("病害档案").GetComboListString("名称")  & "|" &  DataTables("虫害档案").GetComboListString("名称")