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.
我有一个名为 Masterforms 的项目,其中包含许多表单。
我必须将该表单名作为参数传递给函数,即
Masterforms 包含供应商、项目、工作等表格......
我调用了一个方法openform(masterforms.suppliers)
openform(masterforms.suppliers)
定义是
Private Sub openform(ByVal formname as // Form)
您可以通过实例化并调用 show 方法来显示特定的表单。
像这样 :
Dim form as New Form2() form.Show
或者你可以打电话
form.ShowDialog()
如果您希望表单以模态方式打开。如果那是你想要的...
如果您只需要表单名称,则可以将form.NameString 参数作为方法传递给方法,这将使用Name表单的属性。(请确保您已先对其进行初始化)。
form.Name
Name
希望它可以帮助你。