Excel VBA更改CommandButton的颜色

时间:2017-02-20 17:04:16

标签: excel vba excel-vba commandbutton

我在改变CommandButton的颜色方面遇到了问题。在电子表格中,我将设计按钮添加为表单或ActiveX。

然后在VBA中尝试:

Activesheet.shapes("CommandButton1").visible = false 

这个工作得很好。

然后我尝试:

Activesheet.shapes.Fill.ForeColor.RGB = RGB(220, 105, 0)

它运行没有错误但没有任何变化;颜色保持原样。

你能帮帮我吗?

1 个答案:

答案 0 :(得分:3)

试试这样:

Select a1,a2,a3,.., from atable inner join btable b on a1=b.a1