我想使用 form_load 方法将参数传递给另一个表单。
例如,
Private Sub Form_Load(ByVal type as integer)
End Sub
不幸的是,当我键入此内容时发生错误。
有任何想法吗?
我想使用 form_load 方法将参数传递给另一个表单。
例如,
Private Sub Form_Load(ByVal type as integer)
End Sub
不幸的是,当我键入此内容时发生错误。
有任何想法吗?
另一种选择是“构造函数”方法,它采用您想要的参数并调用Me.Show
. 然后可以调用该方法,而不是CustomForm.Show
在其他模块中调用。
是的,你不能:)
但是您可以加载表单,然后在表单上填写公共变量,然后调用您制作的子程序,或者在 form_show 中进行处理
你反其道而行之
声明一个将表单作为参数的函数并使用它;-)
public sub mbox(msg as String, frm as Form)
frm.label1.caption = msg
end Function