JMMB,
To create an Indexer in VB.NET you define a 'Default' parameterized property
Public Class JMMBCollection
Default Public Readonly Property Item(index As Integer) as JMMB
Get
End Get
End Property
End Class
Which defines a readonly 'indexer'.
Note the property name does not need to be Item, the 'Default' keyword is
the key.
Hope this helps
Jay