用VBA重置excel控件值的方法。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用VBA重置excel控件值的方法。相关的知识,希望对你有一定的参考价值。
我想做一个调查表,下面弄一个重置按钮,作用是重置控件的值。不知道有什么方法。
Private Sub CommandButton1_Click()Range("A1:C3,D5:F6").ClearContents
End Sub
清空A1到C3,D5到F6区域的数值。追问
不是啊,
这种,我是托的控件。比如我统计完成后,想重新统计。就需要重置控件中选项按钮的值。不知到怎么解决
Sub ls()
OptionButton1.Value = 1
End Sub
那复选框按钮呢?
追答Sub ls()
CheckBox1.Value = False
CheckBox2.Value = False
CheckBox3.Value = False
End Sub
表单
追答Sub aa()For Each c In ActiveSheet.OptionButtons
c.Value = False
Next
End Sub追问
那复选框按钮呢?
追答Sub cc()For Each c In Sheet1.CheckBoxes
c.Value = False
Next
End Sub追问
为什么有些不一样?
本回答被提问者采纳excel VBA 组合框 取值
请教在excel中想将组合框中的值取出赋予变量如何编写代码?
如组合框名:下拉框1,变量名:序号
这几个使用都不方便,所以我不使用它们,不如直接引用单元格方便,或者使用“数据-有效性”中的序列。
下面这个是excel VBA中的帮助文件,也许对你有用。
ListBox 控件、AddItem 和 RemoveItem 方法以及 ListIndex、ListCount 属性示例
下例用 AddItem、RemoveItem 以及 ListIndex 和 ListCount 属性来添加和删除列表框的内容。
若要使用该示例,请将示例代码复制到某窗体的声明变量部分。请确保该窗体包含:
名为 ListBox1 的列表框。
名为 CommandButton1 和 CommandButton2 的两个命令按钮控件。
Dim EntryCount As Single
Private Sub CommandButton1_Click()
EntryCount = EntryCount + 1
ListBox1.AddItem (EntryCount & " - Selection")
End Sub
Private Sub CommandButton2_Click()
'确认列表框包含列表项
If ListBox1.ListCount >= 1 Then
'如果没有选中的内容,用上一次的列表项。
If ListBox1.ListIndex = -1 Then
ListBox1.ListIndex = _
ListBox1.ListCount - 1
End If
ListBox1.RemoveItem (ListBox1.ListIndex)
End If
End Sub
Private Sub UserForm_Initialize()
EntryCount = 0
CommandButton1.Caption = "Add Item"
CommandButton2.Caption = "Remove Item"
End Sub本回答被提问者采纳
以上是关于用VBA重置excel控件值的方法。的主要内容,如果未能解决你的问题,请参考以下文章
请VBA高手帮忙,我要在EXCEL中插入一个控件,每次只要点击这个控件就能实现下面的功能
Excel vba 多个条件查询应该怎么做,可以用find方法吗?