Hello,
I try to use comboxes , and change oCombox:aItems in the dialog.
I started with samples/Combox.prg , and try to change oCbx2:aItems (second combobox)
1)oCbx2:bGotFocus := ;
{|| oCbx2:aItems := { "1:One", "2:CHANGED", "3:Three" } }
The second combobox receives no visible focus , clicking shows the old items
bWhen shows focus , but the result is also bad
2) I tryed to use the VALID clausule from the first combobox :
VALID ( msginfo("ok") , oCbx2:aItems := { "1:One", "2:CHANGED", "3:Three" } , .T. )
BUT , THIS IS NOT EXECUTED , MSGINFO HAS NO EFFECT !!!!!!!!!
Frank
Combobox , changing aitems dynimacaly
Re: Combobox , changing aitems dynimacaly
Try this codeblock :Frank Demont wrote:
I try to use comboxes , and change oCombox:aItems in the dialog.
I started with samples/Combox.prg , and try to change oCbx2:aItems (second combobox)
1)oCbx2:bGotFocus := ;
{|| oCbx2:aItems := { "1:One", "2:CHANGED", "3:Three" } }
The second combobox receives no visible focus , clicking shows the old items
bWhen shows focus , but the result is also bad
2) I tryed to use the VALID clausule from the first combobox :
VALID ( msginfo("ok") , oCbx2:aItems := { "1:One", "2:CHANGED", "3:Three" } , .T. )
BUT , THIS IS NOT EXECUTED , MSGINFO HAS NO EFFECT !!!!!!!!!
Frank
@ nRow, nCol COMBOBOX oCbx VAR cPav PIXEL UPDATE VALID !empty( cPav ) OF oDlg SIZE n, nFh * 4
aeval( MyArray, { |x| aadd( oCbx:aItems, x[ 2 ] ) } ) // for multidimensional array .
or
aeval( MyArray, { || aadd( oCbx:aItems, MyArray ) } )
I'm changing my comboboxec at runtine in this way . Maybe it helps .
With best regards ! Rimantas
Rimantas U.