I am so confused about using nested TGroup in TFolder.
First of all I use Windows manifest. Without it there is no problem.
My sample Code:
- Code: Select all Expand view
#include "FiveWin.ch"
function Main()
local oDlg, oFld, oGrp, oGrp1
DEFINE DIALOG oDlg SIZE 400, 300 COLOR "W/B" transparent
@ 0.5, 1 FOLDER oFld OF oDlg SIZE 188, 138 ;
PROMPTS "One", "Two", "Three"
@ 2, 3 GROUP oGrp TO 120, 180 PROMPT " 1. Group Text " OF oFld:aDialogs[ 1 ] PIXEL
@ 10, 10 GROUP oGrp1 TO 70, 100 PROMPT " 2. Group Text " OF oFld:aDialogs[ 1 ] PIXEL
ACTIVATE DIALOG oDlg CENTERED ON INIT oFld:aDialogs[1]:SetColor(, 9425383)
return nil
.rc
- Code: Select all Expand view
1 24 "WindowsXP.Manifest"
with this code screen is below.
But you can see problem that 1. Group left line and bottom lines are missing.
I can fix them deleting TRANSPARENT word in DEFINE DIALOG line. But in this case there is another problem occurs like below. I can not set colors of dialogs in Folder. I don't want to use gradient.
I have solved this problem in 8.11 somehow, but I could not solve in 8.12 and 9.01. I also use xBuild version 4.6 Dated 20081205 17:41:49.
Can anbody give me an advice?
Thanks in advance.