I'm currently using DataEnvironment to access a DB. I want to fill a combobox with the values of DEcmd1: select MyField form MyRec1

According to that one I have a H-flexgrid, attached to DEcmd2: select * from MyRec2 where ID = MyID

The following problem occurs:
If I connect my Combo directly to DEcmd1, it only shows 1 item in the dropdownlist.

If I use a loop to fill the combo manually, it doesn't perform the select statement:
MyDE.DEcmd2(combo1.text)

Any help please.