我正在编写一个用户将登录的应用程序。(Form2登录) 它需要在主窗体上显示标签。 目前我有这段代码:
Form1.Label1.Visible = True
这不起作用。它不需要处理它只需要将标签显示为PoC所需的多个用户名。
答案 0 :(得分:0)
答案 1 :(得分:0)
Public Class mainform
Private Sub mainform_Load(sender As Object, e As EventArgs) Handles MyBase.Load
loginform.Show()
label1.visible=false
End sub
End class
Public Class loginform
Private Sub ButtonLogin_Click(sender As Object, e As EventArgs) Handles ButtonLogin.Click
mainform.Label1.Visible = True
End sub
End class
这必须有效!