0
我的代碼仍然執行時沒有使用函數InitializeComponent()
,如果我調用private sub AddGA_Shown
中的函數,我的所有其他函數將不會打印,運行和工作。我不明白爲什麼會發生這種情況,因爲在我沒有撥打InitializeComponent()
時,我的所有其他表格都不會顯示該表格中的組件。InitializeComponent not in code,still excutes
Private Sub AddGA_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
showTabGeneralNOAD()
End Sub
Private Sub showTabGeneralNOAD()
GAMailAddressTxt.Text = "none"
GAPasswordLastChangeTxt.Text = "none"
GAAccountStatusBox.Text = "active"
GADiscriptionTxt.Text = "Not an AD Account"
End Sub
Private Sub cancelBtn_Click(sender As Object, e As EventArgs) Handles cancelBtn.Click
Me.Close()
End Sub
This is how the form looks like with the InitializeComponent
我所有的其他形式都有自己的構造函數,只有一個。但我從來沒有注意到它會自動生成'InitializeComponent'。謝謝 – Jacky
@Jacky:設計者/自動生成的代碼位於'yourForm.Designer.vb'文件中。 –