当前位置:编程学习 > VB >>

跪求用Excel VBA实现按钮动态调整Enabled属性

如题 http://download.csdn.net/source/2346022 没领会到你的精神。
我下面这段代码的环境:sheet1里添加一个activex控件 commandbutton,名字叫cmds,enabled属性为false,当单元格"C2"为空时 cmds 无效,当单元格"C2"有内容时,cmds 有效。
在sheet1的代码视图添加如下代码
Private Sub Worksheet_Change(ByVal Target As Range)
    If Cells(2, 3) <> "" Then cmds.Enabled = True Else cmds.Enabled = False
End Sub
补充:VB ,  VBA
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,