This is a general VB problem. With this code from User Control:
Code:
With Extender.Parent.Controls(Extender.Name).Item(0)
    .property = value
End With
... nothing happens (.property is the same as before). But this:
Code:
Extender.Parent.Controls(Extender.Name).Item(0).property = value
... works.

Am i missing something?