和我从该表单获得的值,我需要将其发送到另一个表单。我需要知道如何将它设置为全局变量,并在原始表单关闭后以另一种形式调用它。谢谢!
答案 0 :(得分:0)
使用以下代码创建一个新模块:
Option Compare Database
Option Explicit
Public YourGlobalVariable As Variant ' Change Variant to the data type you prefer.
编译并保存。
在您的两种表单中,设置值:
YourGlobalVariable = SomeValueToSave
或获取值
SomeLocalVariable = YourGlobalVariable