My combobox is bindingfield is configure to the ChartType column and businessobject is the BOChartsInventory1.
********************************************************************************
Dim chartTypes As String() = System.Enum.GetNames(GetType(ChartType))
Dim ct As String
******************************************************************************************
I set the SFCombo to the following;
1. Set BindingField to MyChartypeField
2. Set the BO to MyBoChartsInventory1
3. Set the Populationtype to Enumeration
4. Set Populate EnunName to MyEnumChartype
5. PopulationOnFormLoad to FormLoad
What am I missing?
Public Property MyField As MyEnum Get Return CType(Enum.Parse(GetType(MyEnum), CType(Me.CurrentRow("MyField"), String)), MyEnum) End Get Set(ByVal value As MyEnum) Me.CurrentRow("MyField") = value.ToString() End SetEnd Property