How can I fill up EpiUltraComboPlus with DataTable?

How can I fill up EpiUltraComboPlus with DataTable?

Not sure of the use case, but could you not just create an EpiDataView and bind to that?

I’m trying tu use it with the result of a BAQ, with EpiUltraGrid or EpiUltraCombo I use DataSource but in this case the control doesn’t have this property

Use this

myCombo.EpiCombo.DataSource = myDataTable;
myCombo.EpiCombo.ValueMember = "myColumnName";
myCombo.EpiCombo.DisplayMember = "myColumnName";

Hi thanks for the reply, the info is displayed in the combo but the navigation buttons doesn’t work

image