Hello Support Team,
in the latest 2014.1.4 update I encountered new issue.
In my code I create the small controls subtree, and then assign the Parent property of the top-level TPanel.
Here is the idea:
// create top-level panel
p:=TPanel.Create(Self);
// top panel
top:=TPanel.Create(Self);
top.Parent:=p;
top.Align:=alClient;
// bottom panel
bottom:=TPanel.Create(Self);
bottom.Parent:=p;
bottom.Align:=alBottom;
// splitter between top and bottom panel
s:=TcxSplitter.Create(Self);
s.Parent:=p;
s.AlignSplitter:=salBottom;
s.Control:=bottom; // <---- here get InvalidOperationException with "Control '' have no parent window"
// decide where to place entire subtree
p.Parent:=Self;
Seems earlier versions works fine.
Could you please check this issue?
Serge,
Thank you for your report. I have reproduced the described behavior and forwarded this ticket to our developers for research.