Nice !
The first problem is resolved thanks to your property :D
The second problem is that i have a lot of error (where i use any reference to this dll)
i have to remove and add again, that's strange
it's like the designer remove the existing one and add the one packaged with the component (even if it is the same)...
Regards.
Main Topics
Browse All Topics





by: BusacPosted on 2009-08-13 at 07:23:41ID: 25088544
BrowsableAttirbute only hides your property from the Properties window. In order to tell the designer to not generate the line for your property, you will need to use the DesignerSerializationVisib ilityAttri bute:
ility(Desi gnerSerial izationVis ibility.Hi dden)> _
<Browsable(False), DesignerSerializationVisib
Public Property MyProperty As MyType
...
As to the second part of your question, why is it that you have to remove and add again this reference? What happens if you don't remove it?