I have a combobox working OK
The next one in a different Dialog will not show its Array after clicking on it.
First example:
Function Minpunten(cAlias, oDlwBew )
Local oDlp, oRadmenu, oCbx
Local MyArrMinJn := {"J","N"}
Local oMyComb
DEFINE DIALOG oDlp RESOURCE "Minpunten"
REDEFINE COMBOBOX oMyComb VAR cMinjn Items MyArrMinJn ID 101 OF oDlp
ACTIVATE DIALOG oDlp
Second example:
Function AnderDomein( cDomein )
Local oDlg, oRadmenu, oCbx
Local MyArrDom := {"A","C"}
Local oMyComb
DEFINE DIALOG oDlg RESOURCE "Domeinen"
REDEFINE COMBOBOX oMyComb VAR cDomeinX Items MyArrDom ID 104 OF oDlg
ACTIVATE DIALOG oDlg
I don't see the difference, but the second one will not show its Array and consequently I cannot select an Item.
Any suggestion?
Thanks,
Jules de Pierre