以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 查询表问题求解 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=43360) |
-- 作者:foxtableee -- 发布时间:2013/12/5 11:33:00 -- 查询表问题求解 ![]() ![]() ![]() ![]() 就是一定要点开价格 后 那味型才有下拉选项 否则就没有下拉选项。怎么设置呀 |
-- 作者:foxtableee -- 发布时间:2013/12/5 11:34:00 -- 我想就是直接点味型,就有下拉选项 然后点查询就可以查询到这味型有哪些菜 |
-- 作者:狐狸爸爸 -- 发布时间:2013/12/5 11:35:00 -- 设置味型列的enter事件代码:
if e.Form.Controls("价格输入框名称").Value Is Nothing Then e.Sender.ComboList = "" Else e.Sender.ComboList = "张三|鲤鱼|熊猫" End if |
-- 作者:foxtableee -- 发布时间:2013/12/5 11:39:00 -- 那张三什么的怎么改呀? |
-- 作者:foxtableee -- 发布时间:2013/12/5 11:40:00 --
这是味型原来enter 的代码 |
-- 作者:狐狸爸爸 -- 发布时间:2013/12/5 11:42:00 -- e.Sender.ComboList = "张三|鲤鱼|熊猫"
改为:
e.Sender.ComboList = DataTables("项目来源表").GetComboListString("来源列","表达式")
http://www.foxtable.com/help/topics/1435.htm http://www.foxtable.com/help/topics/1284.htm
|
-- 作者:foxtableee -- 发布时间:2013/12/17 10:22:00 -- 谢谢,已经弄成功了! |