Dear sir/madam,
I have a question regarding your (VCL) TdxTileControl (12.2.4) in a Delphi XE2 application.
I am running into a problem using a DetailControl when the TdxTileControl is on an MDI form.
The situation is easy to reproduce :
Create a new VCL Forms application, containing just an empty form.
In the FormCreate event of this form, paste the following code :
Delphiprocedure TForm1.FormCreate(Sender: TObject);
var
x: TListView;
begin
objDashBoard := TdxTileControl.Create(Form1);
objDashBoard.Parent := Form1;
objDashBoard.Align := TAlign.alClient;
objDashBoard.OptionsView.ItemSize := 150;
objDashBoard.Visible := True;
objTile := objDashBoard.CreateItem(false);
self.objTile.Visible := True;
x := TListView.Create(Form1);
x.Parent := Form1;
self.objTile.DetailOptions.DetailControl := x;
end;
This example will work perfectly. When you click on the tile, an empty ListView will show up, and you can navigate back to the tiles using the back button.
Now to reproduce the error :
Change the FormStyle property of Form1 to fsMDIForm.
Now run the application again. Clicking the tile will show the empty ListView. When you press the back button after this, an error will show :
EInvalidOperation : Control '' has no parent window.
Can you fix this problem, or show me how to avoid it ? This application is an MDI application and I cannot change that…
Thanks in advance…
Hello ,
I have reproduced this problem. I am forwarding this issue to our developers for further processing.
You will receive an automatic message once the status of this issue is changed.