I've never used a property page before. I have a class defined in the UserControl, and a copy of that in the property page.
When the property page loads, I need to fill in the current values. And when it closes, I need to update the class defined in the UserControl. ex:
MyControl.ctl
vb Code:
Option Explicit
Private m_MyClass As MyClass
Public Property Get UCMyClass() As MyClass
Set UCMyClass = m_MyClass
End Property
I need to be able to access and modify the m_MyClass from the property page. 

Would I use SelectedControls(Index).Item(0).UCMyClass ? Or SelectedControls(Index).UCMyClass?