I am putting a DateEdit field on my form at runtime and binding it to a business object using the following code:Dim
fldDate As New DateEdit
Dim itemDate As LayoutControlItem
fldDate.BusinessObject = Me
fldDate.BindingField = "Date"
itemDate = LayoutGroup.AddItem(New LayoutControlItem, Utils.InsertType.Bottom)itemDate.Text = "Date:"
itemDate.Control = fldDateWhen I use this it gives me the correct result except that two buttons appear instead of one. This is a result of something in the Inherited UI, because I can replace the Inherited DateEdit with a straight DevExpress DateEdit and I have no problems. But I need the data bound to a business object, so I need to be able to use the Inherited control. Any ideas or is this a bug?