Combobox , changing aitems dynimacaly

Post Reply
Frank Demont
Posts: 142
Joined: Sun Oct 09, 2005 10:59 am

Combobox , changing aitems dynimacaly

Post by Frank Demont »

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
User avatar
Rimantas
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: Combobox , changing aitems dynimacaly

Post by Rimantas »

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
Try this codeblock :
@ 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.
Post Reply