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
Combobox problem
-
- Posts: 21
- Joined: Mon Mar 20, 2006 12:48 pm
- Location: Netherlands
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Combobox problem
Is the combo tall enough? Check also what really is in the array.
EMG
EMG
-
- Posts: 21
- Joined: Mon Mar 20, 2006 12:48 pm
- Location: Netherlands