Thanks for your help
I would like the calling program to be able to do
dealslot.slottype= xxx where xxx is an enumerated list
provided by intellisense. How do I do this?
Code:
Imports Microsoft.VisualBasic
PublicClass DealSlot
Private mSlotType AsString
PublicProperty SlotType() AsString
Get
Return mSlotType
EndGet
Set(ByVal value AsString)
mSlotType = value
EndSet
EndProperty