A
andreas
I can open several childforms with the following sub in de mdi form after
clicking a button
Private Sub NewWindow()
Dim ch As New ChildForm()
ch.MdiParent = Me
ch.Text = "Textwindow nr " & Me.MdiChildren.Length.ToString
ch.Show()
end sub
I want to open automatically a new childform when the last childform is
closed or closing.
I have tried with a event but changing the line in the sub in <dim
Withevents
ch as new Childform()> fails.
Thanks for any response.
clicking a button
Private Sub NewWindow()
Dim ch As New ChildForm()
ch.MdiParent = Me
ch.Text = "Textwindow nr " & Me.MdiChildren.Length.ToString
ch.Show()
end sub
I want to open automatically a new childform when the last childform is
closed or closing.
I have tried with a event but changing the line in the sub in <dim
Withevents
ch as new Childform()> fails.
Thanks for any response.