gpt4 book ai didi

excel - VBA如何将用户表单变量传递给子程序

转载 作者:行者123 更新时间:2023-12-04 20:28:57 26 4
gpt4 key购买 nike

我正在尝试使用子程序从用户表单输入中调用变量。
但是,即使我可以通过将用户窗体输入打印到工作表来在用户窗体中正确显示它,但我似乎无法将其作为公共(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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com