excel中VBA下拉组合框的使用

excel中VBA下拉组合框的使用,第1张

代码增加一句

combobox1.clear(放在你添加选项内容的代码前面)

就可以了.

if

combobox1.value=?

then

[a1]=??

else

if

comebobox1.value=??

then

[a1]=???

else

[a1]=???

end

if

end

if

或者定义数组

arr=array("a","b","c)

[a1]=arr(application.match(combobox1.value,combobox1.list,0)-1)

if combo1.text="A" then

form3.show

elseif combo1.text="B" then

form4.show

elseif combo1.text="C" then

form5.show

end if


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11881745.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存