I was having an issue with setting a property within a group within my custom control.
compositeData.MyGroup.MyProperty = "foo";
I reported this to Notes tech support and they got back to me with a solution and I can't remember the details but the said I first need to create the group object.
Something like:
compositeData.MyGroup = new GroupObject;
Of course that is not the right syntax. Does anyone know how to create this object?