Get Handle of Forms
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
I had a MDI project with multi ChildForm. I openned multi ChildForm. How can I get the Handle of these ChildForms? Help me Plz. Thanks
-
I had a MDI project with multi ChildForm. I openned multi ChildForm. How can I get the Handle of these ChildForms? Help me Plz. Thanks
' frm will get each child form and in sample am closing them all ' Dim frm As Object For Each frm In Me.MdiChildren frm.dispose() Next Rizwan Bashir