FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Combobox , changing aitems dynimacaly
Posts: 142
Joined: Sun Oct 09, 2005 10:59 AM
Combobox , changing aitems dynimacaly
Posted: Tue Oct 18, 2005 06:43 AM

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

Posts: 437
Joined: Fri Oct 07, 2005 12:56 PM
Re: Combobox , changing aitems dynimacaly
Posted: Tue Oct 18, 2005 07:24 AM
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.

Continue the discussion