Hello.
I have the following simplified resource dialog.
TAB TAB_GROUP {
GROUP TAB1{
NAME TAB1;
}
GROUP TAB2{
NAME TAB2;
SCROLLGROUP {
GROUP GROUP_TO_FLUSH {
}
}
}
}
The problem is that the following code doesn't place the button in the flushing group.
LayoutFlushGroup(GROUP_TO_FLUSH );
AddButton(....);
LayoutChanged(GROUP_TO_FLUSH );
I load the resource file using LoadDialogResource, but I fill the flushing group via code.
After flushing the group, the button appears below the tab group.
How Can I place the insertion point in the GROUP_TO_FLUSH ?
Thank you.