作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用子程序从用户表单输入中调用变量。
但是,即使我可以通过将用户窗体输入打印到工作表来在用户窗体中正确显示它,但我似乎无法将其作为公共(public)变量传递给子例程。当我调用子程序中的变量时,它们都是空的。
我以此为指导:
Passing variable from Form to Module in VBA
这是我的代码:
Public a As String
Public b As Double
Public c As String
Private Sub OKButton_Click()
'from userform
a = TextBox1.Value
b = TextBox2.Value
c = TextBox3.Value
Cells(1, 1).Value = a
Cells(2, 1).Value = b
Cells(3, 1).Value = c
'this displays the inputs properly
Unload UserForm1
End Sub
Public Sub Login()
'in module
UserForm1.Show
MsgBox (a)
MsgBox (b)
MsgBox (c)
End Sub
最佳答案
这样做。将您的公共(public)变量放在模块代码中。
Public a As String
Public b As Double
Public c As String
Public Sub Login()
'in module
UserForm1.Show
MsgBox (a)
MsgBox (b)
MsgBox (c)
End Sub
关于excel - VBA如何将用户表单变量传递给子程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53412322/
我是一名优秀的程序员,十分优秀!