Hi all
I have a Mdi Child Fom being oppened from the parent the form opens but the Load event will not fire UP.
Doesn't the load event suppose to fire up every time the form is opened?
Here isthe code usedto open the form from the Parent and also the load even of the child form.
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Dim mdiChildForm As New Input_frm
mdiChildForm.MdiParent = Me
If Not CheckIfOpen("Input_frm") Then
mdiChildForm.Show()
End If
End Sub
Private Sub Input_frm_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
MsgBox("Loaded")
End Sub
Thanks In Advance