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
******************************************************************************************
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