Hi ,
I'm new at this so sorry if my question is a bit unstructured.
How can I set a "child"userform in excel without the form getting activated. I start in the "mother"form, and when I click the button "show childform" it should show only the childform, because the motherform is already open.
Now, as soon as i get to the 'set'part the procedure jumps to private sub userform_initialize, where the motherform gets opened again.
'===============================
Private Sub btnShowChild_Click()
'===============================
' Finds the child to the mother.
Dim The_MotherForm As Object, The_ChildForm As Object
Set The_MotherForm = UF_Mother
Set The_ChildForm = UF_Child
Load_ChildForm The_MotherForm, The_ChildForm
End Sub
I'm new at this so sorry if my question is a bit unstructured.
How can I set a "child"userform in excel without the form getting activated. I start in the "mother"form, and when I click the button "show childform" it should show only the childform, because the motherform is already open.
Now, as soon as i get to the 'set'part the procedure jumps to private sub userform_initialize, where the motherform gets opened again.
'===============================
Private Sub btnShowChild_Click()
'===============================
' Finds the child to the mother.
Dim The_MotherForm As Object, The_ChildForm As Object
Set The_MotherForm = UF_Mother
Set The_ChildForm = UF_Child
Load_ChildForm The_MotherForm, The_ChildForm
End Sub