A
Atchoum
I have the following property in one UserControl. When I use the control,
the description appears Ok but the default value is stuck at False.
What am I doing wrong?
<System.ComponentModel.DefaultValue(True), _
Description("Indicates whether users with Browse rights should be
displayed")> _
Property ShowBrowseRole() As Boolean
Get
Return m_bBrowseRole
End Get
Set(ByVal Value As Boolean)
m_bBrowseRole = Value
End Set
End Property
TIA
the description appears Ok but the default value is stuck at False.
What am I doing wrong?
<System.ComponentModel.DefaultValue(True), _
Description("Indicates whether users with Browse rights should be
displayed")> _
Property ShowBrowseRole() As Boolean
Get
Return m_bBrowseRole
End Get
Set(ByVal Value As Boolean)
m_bBrowseRole = Value
End Set
End Property
TIA