THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 26/02/2003 at 05:04, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.012
Platform: Windows ;
Language(s) : C.O.F.F.E.E ;
---------
How are the IDs of GUI elements assigned or obtained? for example using the UserDialog class:
MyDialog::CreateLayout()
{
SetTitle("My Dialog");
AddGroupBeginV(100010, 0, 1, "", 0);
AddGroupSpace(4, 4);
AddGroupBorderSpace(4, 4, 4, 4);
AddStaticText(100011, 0, 0, 0, "Hello World!", 0);
AddGroupEnd();
AddDlgGroup(OK + CANCEL);
return TRUE;
}
are the IDs for AddGroupBegin = 1000010 or AddStaticText = 100010 listed somewhere or can I use my own values?
Thanks