请问如下简单VBA功能,如何在永中实现?
下面是EXCEL的VBA程序
Private Sub dx1y_Click()
dx1n.Enabled = False
dx1d.Enabled = True
Cells(10, 5) = "yes"
Range("e11").Select
Selection.ClearContents
End Sub
其中,dx1y,dx1n,dx1d都是普通的button控件。
Range("e11").Select
Selection.ClearContents
是把e11的内容清空。
谢谢。