Hi guys,
I am trying to determine whether the child form is opened before creating another instance of a form.
The following code creates a new instance of form.
Dim frm As New Form
frm.MdiParent = Me ' Me is the container
frm.Show()
I don't want to create another instance of a form if the same form already opened. If the form already opened then I want to bring to the front.
Thanks in advance
