Antonio, thats not a good way. You see, the focus-color are not gone if leaving the get. And also the focus goes always return to the first control of the folderpage if i return from another folderpage.
As I say, this problem is only on NOWAIT-Dialogs!!
The problem of the bolded say on transparent dialogs is also visible in this testdialog!
Code: Select all | Expand
function test()
local oDlg, oFld, oGet, cCombo, cTest := "Hello world", cAnother := "Another GET"
SetGetColorFocus( CLR_BLUE )
DEFINE DIALOG oDlg TITLE "Antonio Test" SIZE 400, 300 TRANSPARENT
@ 1, 19 GET cTest OF oDlg COLOR CLR_HRED,CLR_GRAY
@ 3, 5 FOLDEREX_ST oFld PIXEL PROMPT "&One", "&Two", "&Three" SIZE 140,120
@ 1, 1 GET oGet VAR cTest OF oFld:aDialogs[ 1 ] COLOR CLR_HRED,CLR_GRAY
@ 2, 1 COMBOBOX cCombo PROMPTS {"A","B","C"} OF oFld:aDialogs[ 1 ]
@ 4, 1 GET cAnother OF oFld:aDialogs[ 1 ] COLOR CLR_HRED,CLR_GRAY
@ 5, 1 SAY "Bolder.. , when TAB changes the focus goes in-/outside the folder" OF oFld:aDialogs[ 1 ]
@ 7.2, 14 BUTTON "Ok" ACTION msginfo(;
"BG-Color Get 1: "+str(oFld:aDialogs[ 1 ]:aControls[1]:nClrpane)+CRLF+CRLF+;
"BG-Color Get 2: "+str(oFld:aDialogs[ 1 ]:aControls[3]:nClrpane);
)
ACTIVATE DIALOG oDlg CENTER //NOWAIT
return nil