作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是在 VBA 中创建用户表单的新手。不过,我已经使用 VBA 宏有一段时间了,所以我对它们有所了解。现在,我正在为使用带有列表框的用户表单的用户创建电子表格。我在常规模块中有很多代码,需要引用模块来填充列表框。我现在拥有的是这样的:
Private Sub StartButton_Click()
Dim Number
Call GetTellerNames
For Number = 0 To 40 Step 1
If GetTellerNames(Number) <> "" Then
ListBox1.AddItem (GetTellerNames(Number))
End If
Next
End Sub
Sub of Function not defined
Private Function GetTellerNames()
GetTellerNames = FindOthers(BranchNumber, TellerCode, 2)
End Function
最佳答案
由于GetTellerNames()
代码位于标准模块中,您需要将访问修饰符更改为 public
为了能够从 UserForm1 对象模块访问该方法/子。
关于arrays - 如何用在module1 VBA中填充的数组填充列表框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19658626/
我是一名优秀的程序员,十分优秀!