Hi Guys,
I'm bit confused here and i would really appreciate some help.
I have no problem developing Active-X controls but never had to use Arrays.
Let's suppose i have an Active-X calendar that have 100 textbox
(text1(0), text1(1), etc.)
Usualy when exposing the properties i did the following :

Public Property Get Day_Width() As Integer
Day_Width = m_Day_Width
End Property

Public Property Let Day_Width(ByVal New_Day_Width As Integer)
m_Day_Width = New_Day_Width
PropertyChanged "Day_Width"
End Property

Now, that i have 100 textbox, how shall i do it (exposing its properties, UserControl_WriteProperties, UserControl_ReadProperties, etc.)

Thanks for any idea