我試圖強調用戶選擇它時從activeX控件的選項按鈕。我決定在選中時顯示陰影,然後在用戶選擇其他選項按鈕時隱藏陰影。第一個過程正在運行,而即使我選擇了其他按鈕,陰影也不能被刪除。我的VBA代碼如下所示:從Excel 2010中的ActiveX選項按鈕中刪除陰影VBA
Private Sub OptionButton1_Click()
OptionButton1.Shadow = False
If OptionButton1.Value = True Then
OptionButton1.Shadow = True
Else
OptionButton1.Shadow = False
End If
End Sub
任何人都可以請幫我解決這個問題嗎?
你在其他按鈕從OptionButton1去除陰影有代碼? – JosieP