Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个表单,需要在两个表单之间共享文本控件,这样如果我在 Form-A 的文本框中输入一个值,它应该在 Form-B 的文本框中更新相同的值。
可能吗?如果是,您能否解释一下我如何将它实现到我的项目中,因为我是 Visual Basic 6.0 的新手。
我尝试创建一个控件数组,但这没有帮助。
是的。在formA上文本框的.Change事件中,输入以下代码:
FormB.TextboxB.Text=Me.TextboxA.Text
其中 FormB 是表单 B 的名称,TextboxB 是表单 B 上的文本框名称,FormA 是表单 A 的名称,TextboxA 是表单 A 上的文本框名称。