I have a multipage userform (Multipage1) and I am prompting the user for the number of a particular object. I want to create a new tab on Multipage1 for each instance - I know how to add tabs to a multipage.

I have created a second multipage (Multipage2) and I want to create a new instance of Multipage2 and assign it to each tab. I know how to create a new instance of Multipage2 but I cannot figure out how to bind/link each instance of Multipage2 to each new tab of Multipage1.

Here's a snippit . . .
Private Sub addOpPage(Arg As Byte)

Arg = 7
Dim OpPage() As MSForms.Page
Dim count As Byte
Dim f(1 To 7) As New myMultiPage2
Dim aaa(1 To 7) As MultiPage


ReDim OpPage(1 To Arg) As MSForms.Page
For count = 1 To Arg
Set OpPage(count) = MultiPage1.Pages.Add("Operator" & count & "Page")
'I have an existing multipage form (myMultiPage2)
'which I want to display on each of the tabs of Multipage1
'I am trying to assign each instance of f() to each new tab created.

Next count
End Sub
Any assistance would be appreicated