以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]ComboBox (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=77803) |
-- 作者:yupeng -- 发布时间:2015/11/25 17:01:00 -- [求助]ComboBox ComboBox控件 点击控件后出现3个值,分别为1 2 3 当我选择1时执行代码A 选择2时执行代码B 以此类推
请问应该怎样写代码,代码写在哪个事件里面。谢谢 |
-- 作者:大红袍 -- 发布时间:2015/11/25 17:03:00 -- 写到TextChanged事件。
If e.Sender.Text = "1" then
ElseIf e.Sender.Text = "2" Then
End If |
-- 作者:yupeng -- 发布时间:2015/11/25 18:18:00 -- 谢谢 |