E
ECVerify.com
I am trying to make a property that creates a drop down control that I
can fill with string options..."test1", "test2", "test2"
I can make one with True false as shown here but I cant figure out how
to make it do a dropdown with custom strings
Private _numericTextBox As Boolean = False
<Category("MyCategory"), Description("Sets the text box as
numeric")> _
Public Property NumericTextBox() As Boolean
Get
Return _numericTextBox
End Get
Set(ByVal Value As Boolean)
_numericTextBox = Value
End Set
End Property
can fill with string options..."test1", "test2", "test2"
I can make one with True false as shown here but I cant figure out how
to make it do a dropdown with custom strings
Private _numericTextBox As Boolean = False
<Category("MyCategory"), Description("Sets the text box as
numeric")> _
Public Property NumericTextBox() As Boolean
Get
Return _numericTextBox
End Get
Set(ByVal Value As Boolean)
_numericTextBox = Value
End Set
End Property