Hello, I need some help understanding MDI forms.
I want to get the contents of the active child MDI form, how do you do that? Here's what I did to create a child form.
So say I want to get the text from an active form. How can I get the active form id so I can just do this?
childforms(chil dform).textbox1 .text
I want to get the contents of the active child MDI form, how do you do that? Here's what I did to create a child form.
Code:
childForm += 1 If childForm > UBound(childForms) Then ReDim childForms(childForm) End If childForms(childForm) = New formHTML childForms(childForm).FormID = childForm childForms(childForm).MdiParent = Me childForms(childForm).Show()
childforms(chil dform).textbox1 .text
Comment