A
Able
Dear friends
In a class I have this property:
Private mstr_FirstName As String
Public Property FirstName() As String
Get
Return mstr_FirstName
End Get
Set(ByVal Value As String)
mstr_FirstName = Value
End Set
End Property
But I want the mstr_FirstName to be only one of three different optional
values, lets say "Joe", "Pete" or "Frank". Somebody who knows how to
implemet this task?
Regards Able
In a class I have this property:
Private mstr_FirstName As String
Public Property FirstName() As String
Get
Return mstr_FirstName
End Get
Set(ByVal Value As String)
mstr_FirstName = Value
End Set
End Property
But I want the mstr_FirstName to be only one of three different optional
values, lets say "Joe", "Pete" or "Frank". Somebody who knows how to
implemet this task?
Regards Able