|
注意 : 代码包含在本文中不包含影响所有属性和对控件事件的示例。 如果您不得不, 请使用属性窗口要查看可供控件属性的列表。 要在 视图 菜单上, 查看列表的属性, 请单击 属性窗口 。
如何使用设计模式来编辑控件
当您使用 " VisualBasic 编辑器来设计一个对话框, 使用设计模式。 在设计模式, 您可编辑控件和可更改属性在属性窗口 UserForm 上的控制。 若要显示属性窗口, 在 视图 菜单上, 单击 属性窗口 。
当您处在设计模式 注意 控件不响应与事件。 当您运行一个对话框, 显示方式, 用户看到它, 程序处于运行模式。 当 UserForm 是从内存中卸载将不会保留更改, 对运行模式中控件的属性。
注意 控件请回复到事件在运行模式。
如何引用 UserForm 上控件
如何您引用控件编程取决 VisualBasic 模块表运行代码的类型。 如果代码从常规模块, 运行以下语法是:
UserFormName.Controlname.Property = 值
例如, 如果要设置名为 TextBox , 名为到值是 Bob , UserForm1 UserForm 上 TextBox 控件的 Text 属性使用以下代码:
UserForm1.TextBox1.Text = "Bob"如果代码是通过事件的控件或者通过 UserForm, 启动过程中是您不需要引用名为 UserForm。 而, 使用以下代码:
TextBox1.Text = "Bob"当向对象, 附加代码代码附加到之一为对象事件。 众多, 本文示例中, 将代码附加到 Click 事件是 CommandButton 对象。
标签控件
标签 控件主要用于描述 UserForm 上其他控件。 运行 UserForm 时 Label 控件不能编辑由用户。 使用 Caption 属性到设置或返回一个 Label 控件中文本。 用于格式化 Label 控件其他常用属性包括 字体 属性和 ForeColor 属性。
如何使用 WITH 语句设置 Label 控件格式
要使用 WITH 语句来更改属性的 Label 控件, 请按照下列步骤: 1. 启动 Excel, 并打开新空白工作簿。
2. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
3. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
4. 将 Label 控件添加到 UserForm。
5. 将 CommandButton 控件添加到 UserForm。
6. 双击以打开代码窗口对于 UserForm CommandButton 控件。
7. 在代码窗口, 为 CommandButton 1 Click 事件键入下列代码:
Private Sub CommandButton1_Click() With Label1 ' Set the text of the label. .Caption = "This is Label Example 1" ' Automatically size the label control. .AutoSize = True .WordWrap = False ' Set the font used by the Label control. .Font.Name = "Times New Roman" .Font.Size = 14 .Font.Bold = True ' Set the font color to blue. .ForeColor = RGB(0, 0, 255) End With End Sub
8. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
9. 单击 CommandButton 。
文本粗 TimesNewRoman 用字体大小是 14 中 Label 控件上显示 " Thisis 标签示例 1 "。
TextBox 控件
TextBox 控件经常用于收集来自用户输入。 Text 属性包含项, TextBox 控件中进行。
如何使用 TextBox 控件来验证密码
如果您设置 TextBox 控件, PasswordChar 属性的它成为 " masked - 编辑 " 控件。 由字符指定可视取代 TextBox 控件中键入的每个字符。 要使用 TextBox 控件来验证密码, 请按照下列步骤: 1. 启动 Excel, 并打开新空白工作簿。
2. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
3. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
4. 将 TextBox 控件添加到 UserForm。
5. 在 视图 菜单上, 单击 属性 以显示属性窗口。
6. 对 TextBox 控件, PasswordChar 属性中键入 *
注意 您正将值改为星号。
7. 将 CommandButton 控件添加到 UserForm。
8. 双击以打开代码窗口对于 UserForm CommandButton 控件。
9. 在代码窗口, 为 CommandButton 1 Click 事件键入下列代码:
Private Sub CommandButton1_Click() If TextBox1.Text <> "userform" Then MsgBox "Password is Incorrect. Please reenter." TextBox1.Text = "" TextBox1.SetFocus Else MsgBox "Welcome!" Unload Me End If End Sub
10. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
11. 在 TextBox 控件中键入密码 userform 。
12. 单击 CommandButton 控件。
对于本例, 密码是 " userform "。 如果您键入正确密码, 您收到一个消息框, 指出密码不正确, 然后重新键入密码可清除 TextBox 控件, 并且。 当您键入正确密码, 收到欢迎消息, 并 UserForm 关闭。
CommandButton 控件
您可以使用 CommandButton 控制来启动 VBA 过程。 VBA 过程通常附加到 CommandButton 控件的 Click 事件。 要使用 CommandButton 控件 Click 事件发生, 时, 运行过程请按照步骤: 1. 启动 Excel, 并打开新空白工作簿。
2. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
3. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
4. 将 CommandButton 控件添加到 UserForm。
5. 双击以显示代码窗口对于 UserForm CommandButton 控件。
6. 在代码窗口, 键入如下代码:
Private Sub CommandButton1_Click() red = Int(Rnd * 255) green = Int(Rnd * 255) blue = Int(Rnd * 255) CommandButton1.BackColor = RGB(red, green, blue) End Sub
7. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
CommandButton 1 控件的背景颜色更改每次您单击它。
ListBox 控件
ListBox 控件的目的是为了向用户显示要选择的项目列表。 您可以存储为 Excel 工作表上 ListBox 控件项目列表。 使用 RowSource 属性来填充工作表, 上 ListBox 控件与范围的单元格。 ListBox 控件在使用 MultiSelect 属性, 时可设置为接受多重选择。
如何从 ListBox 控件获取当前选定项
使用 Value 属性的 ListBox 控件可返回当前选定项。 要返回单项选择 ListBox 控件, 中当前选定项请按照下列步骤操作: 1. 启动 Excel, 并打开新空白工作簿。
2. 在单元格 A 1: A 5 Sheet, 键入了您要用于填充 ListBox 控件值。
3. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
4. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
5. 将 ListBox 控件添加到 UserForm。
6. 双击 ListBox 控件以显示代码窗口对 ListBox 控件。
7. 在代码窗口, 为 ListBox 1 Click 事件键入下列代码:
Private Sub ListBox1_Click() MsgBox ListBox1.Value End Sub
8. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
当单击列表, 中的项目与当前选定项目将出现一个消息框。
如何获取多选择 ListBox 控件中选定项
确定多选择 ListBox 控件, 中所选项目必须循环列表, 中所有项目并再查询 Selected 属性。 要返回多选择, ListBox 控件中当前选定项请按照下列步骤操作: 1. 启动 Excel, 并打开新空白工作簿。
2. 在单元格 A 1: A 5 Sheet, 键入了您要用于填充 ListBox 控件值。
3. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
4. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
5. 将 ListBox 控件添加到 UserForm。
6. 在 视图 菜单上, 单击 属性 以查看属性窗口。
7. 键入值, 对于下列 ListBox 控件属性表示:
Property Value ----------- ----------------------- MultiSelect 1 - frmMultiSelectMulti RowSource Sheet1!A1:A8
8. 将 CommandButton 控件添加到 UserForm。
9. 双击以显示代码窗口对于 UserForm CommandButton 控件。
10. 在代码窗口, 为 CommandButton 1 Click 事件键入下列代码:
Sub CommandButton1_Click () ' Loop through the items in the ListBox. For x = 0 to ListBox1.ListCount - 1 ' If the item is selected... If ListBox1.Selected(x) = True Then ' display the Selected item. MsgBox ListBox1.List(x) End If Next x End Sub
11. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
12. 列表中选择一个或多个项目。
13. 单击 CommandButton 1 。
单击 CommandButton 1 , 后, 在 ListBox 控件中选择每个项目显示在一个单独的消息框。 UserForm 在消息框中, 出现所有选定项后自动关闭。
如何使用 RowSource 属性来填充工作表上以 ListBox 控件
要使用 RowSource 属性来填充工作表, 上 ListBox 控件从范围的单元格请按照下列步骤: 1. 启动 Excel, 并打开新空白工作簿。
2. 在单元格 A 1: A 5 Sheet, 键入了您要用于填充 ListBox 控件值。
3. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
4. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
5. 将 ListBox 控件添加到 UserForm。
6. 将 CommandButton 控件添加到 UserForm。
7. 双击以显示代码窗口对于 UserForm CommandButton 控件。
8. 在代码窗口, 为 CommandButton 1 Click 事件键入下列代码:
Private Sub CommandButton1_Click() ListBox1.RowSource = "=Sheet1!A1:A5" End Sub
9. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
注意 ListBox 1 不包含任何值。
10. 单击 CommandButton 1 。
ListBox 1 填充单元格 A 1: A 5 Sheet 中有值。
如何填充一个 ListBox 控件数组中有值
下例显示您如何填充以数组 ListBox 控件。 数组中每次为 ListBox 控件项必须分配值。 通常, 此过程要求您使用循环结构, 如 ForàNext 循环。 要填充以数组, ListBox 控件请按照下列步骤操作: 1. 启动 Excel, 并打开新空白工作簿。
2. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
3. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
4. 将 ListBox 控件添加到 UserForm。
5. 在 插入 菜单上, 单击要插入模块表 模块 。
6. 在代码窗口, 键入如下代码:
Sub PopulateListBox() Dim MyArray As Variant Dim Ctr As Integer MyArray = Array("Apples", "Oranges", "Peaches", "Bananas", "Pineapples") For Ctr = LBound(MyArray) To UBound(MyArray) UserForm1.ListBox1.AddItem MyArray(Ctr) Next UserForm1.Show End Sub
7. 然后单击 运行 在 工具 菜单上,、 " PopulateListBox , 和 宏 。
PopulateListBox 过程建立简单数组, 并数组中通过使用 AddItem 方法添加到 ListBox 控件项目。 然后, UserForm 出现。
如何使用工作表上水平的单元格区域来填充一个 ListBox 控件
如果将 ListBox 控件的 RowSource 属性到水平区域的单元格, ListBox 控件中第一个值只会出现。
要通过使用 AddItem 方法, ListBox 控件从水平区域的单元格填充请按照下列步骤操作: 1. 启动 Excel, 并打开新空白工作簿。
2. 在单元格 A1:E1 Sheet, 键入了您要用于填充 ListBox 控件值。
3. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
4. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
5. 将 ListBox 控件添加到 UserForm。
6. 在 插入 菜单上, 单击要插入模块表 模块 。
7. 在代码窗口, 键入如下代码:
Sub PopulateListWithHorizontalRange() For Each x In Sheet1.Range("A1:E1") UserForm1.ListBox1.AddItem x.Value Next UserForm1.Show End Sub
8. 然后单击 运行 在 工具 菜单上,、 " PopulateListWithHorizontalRange , 和 宏 。
在单元格 A 1: E 5 Sheet, 将值添加到 ListBox 1 一次循环宏过程。
A 1: E 5 单元 注意 ListBox 1 与不定 Sheet 1 上。
如何从 ListBox 控件绑定到多列的数据返回多个值
您可以格式 ListBox 控件以显示多个列的数据。 这意味着 ListBox 控件, 每个列表行上显示多个项目。 要多值列表, 中选定项收益请按照下列步骤操作: 1. 启动 Excel, 并打开新空白工作簿。
2. Sheet 由该单元格中键入以下数据:
A 1: 年 B 1: 区域 C1: 销售
A 2: 1996 B: 北美 C2: 140
3: 1996 B 3: 南非 C 3: 210
A 4: 1997 B4: 北美 C 4: 190
A5: 1997 B 5: 南非 C 5: 195
3. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
4. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
5. 将 Label 控件添加到 UserForm。
6. 将 ListBox 控件添加到 UserForm。
7. 右击 ListBox , 然后单击 属性 。
8. 键入或选择值, 都表示为下列属性对 ListBox 控件与下表中列出:
Property Value ---------------------------- BoundColumn 1 ColumnCount 3 ColumnHeads True RowSource Sheet1!A2:A5
9. 双击 ListBox 控件以显示代码窗口对 ListBox 控件。
10. 在代码窗口, 键入如下代码:
Private Sub ListBox1_Change() Dim SourceData As Range Dim Val1 As String, Val2 As String, Val3 As String Set SourceRange = Range(ListBox1.RowSource) Val1 = ListBox1.Value Val2 = SourceRange.Offset(ListBox1.ListIndex, 1).Resize(1, 1).Value Val3 = SourceRange.Offset(ListBox1.ListIndex, 2).Resize(1, 1).Value Label1.Caption = Val1 & " " & Val2 & " " & Val3 End Sub
11. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
当您单击 ListBox 控件, 中一个条目标签将更改为显示该条目中所有三个项目。
如何从绑定到工作表 ListBox 控件中删除所有项目
要从 ListBox 控件绑定到工作表, 删除所有项目清除, 是存储在 RowSource 属性值。 要从 ListBox 控件绑定到工作表, 删除项目请按照下列步骤: 1. 启动 Excel, 并打开新空白工作簿。
2. 在单元格 A 1: A 5 Sheet, 键入了您要用于填充 ListBox 控件值。
3. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
4. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
5. 将 ListBox 控件添加到 UserForm。
6. 用鼠标右键单击 ListBox 控件, 然后单击 属性 。
7. 在 RowSource 属性, 键入 Sheet 1 A 1: A 5 !
8. 将 CommandButton 控件添加到 UserForm。
9. 双击以显示代码窗口为 CommandButton 控件 CommandButton 控件。
10. 在代码窗口, 为 CommandButton 1 Click 事件键入下列代码:
Private Sub CommandButton1_Click() ListBox1.RowSource = "" End Sub
11. 在 运行 菜单上, 单击 运行子过程 / 用户窗体 。
ListBox 控件, 添加到 UserForm 具有值, 您输入 Sheet 填充。
12. 单击 CommandButton 1 。
从 ListBox 1 中删除所有项目。
如何从不绑定到工作表 ListBox 控件中删除所有项目
没有没有单个 VBA 命令如果没有绑定到工作表列表, 从 ListBox 控件删除所有项目。 要从 ListBox 控件从 VisualBasic 数组, 填充删除所有项目请按照下列步骤: 1. 启动 Excel, 并打开新空白工作簿。
2. 在 工具 菜单, 指向 宏 , 然后单击 VisualBasic 编辑器 。
3. 在 插入 菜单上, 单击要在工作簿中插入 UserForm UserForm 。
4. 将 ListBox 控件添加到 UserForm。
5. 在 插入 菜单上, 单击要插入模块表 模块 。
6. 在代码窗口, 键入如下代码:
Sub PopulateListBox() Dim MyArray As Variant Dim Ctr As Integer MyArray = Array("Apples", "Oranges", "Peaches", "Bananas", "Pineapples") For Ctr = LBound(MyArray) To UBound(MyArray) UserForm1.ListBox1.AddItem MyArray(Ctr) Next UserForm1.Show End Sub
7. 将 CommandButton 控件添加到 UserForm。
8. 双击以显示代码窗口为 CommandButton 控件 CommandButton 控件。
9. 在代码窗口, 为 CommandButton 1 Click 事件键入下列代码:
Private Sub CommandButton1_Click() For i = 1 To ListBox1.ListCount ListBox1.RemoveItem 0 Next I End Sub
10. 然后单击 运行 在 工具 菜单上,、 " PopulateListBox , 和 宏 。
ListBox 控件填充, 并再出现 UserForm。
11. 单击 CommandButton 1 。
从 ListBox 1 中删除所有项目。 |
|