vb在Form2中显示Form1的Text1中的内容,怎么写呢?

2025-02-23 04:37:30
推荐回答(4个)
回答1:

比喻 在Form2 的label1 中 显示Form1的Text1中的内容

Private Sub Command1_Click()
Label1.Caption = Form1.Text1
End Sub

回答2:

show
Print Form1: Text1.Text

回答3:

Print Form1.Text1.Text

回答4:

不行的原因可能是不能在LOAD事件里面写
不知道是不是vb.net