J
job
I'm having trouble getting the DefaultValue property attribute on my
server control show up in design time.
Here my property code:
<Bindable(True), _
Category("Misc"), _
DefaultValue("myDefaultValue")> _
Public Property MyProperty() As String
Get
Return m_MyProperty
End Get
Set(ByVal Value As String)
m_MyProperty = Value
End Set
End Property
The property shows up fine in the property tab group, but the value is
not set to the default value set in the property attribute.
/M
server control show up in design time.
Here my property code:
<Bindable(True), _
Category("Misc"), _
DefaultValue("myDefaultValue")> _
Public Property MyProperty() As String
Get
Return m_MyProperty
End Get
Set(ByVal Value As String)
m_MyProperty = Value
End Set
End Property
The property shows up fine in the property tab group, but the value is
not set to the default value set in the property attribute.
/M