Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Delphi ListView probleme (https://www.delphipraxis.net/157481-listview-probleme.html)

delphinia 13. Jan 2011 10:13

ListView probleme
 
Delphi-Quellcode:
        with TListView.Create(pfrm) do
        begin
          Top := 50;
          Left := 1;
          Height := 50;
          Width := 500;
          name := 'list_' + IntToStr(tab.FieldAsInteger(tab.FieldIndex['pid']));
          Parent := page_control.Pages[PInc];

          FlatScrollBars := True;
          FullDrag := True;
          GridLines := True;
          ReadOnly := True;
          RowSelect := True;
          ShowHint := False;
          SortType := stData;
          ViewStyle := vsReport;
          DoubleBuffered := True;


          //Align := alClient;

          with (pfrm.FindComponent(name) as TListView).Columns.Add do
          begin
            caption := 'TEST1';
          end;

          with (pfrm.FindComponent(name) as TListView).Columns.Add do
          begin
            caption := 'Test2';
          end;

          with (pfrm.FindComponent(name) as TListView).Columns.Add do
          begin
            caption := 'Test3';
          end;

        end;

Das mein Code der ist ok
aber wenn ich durch die Seiten meiner PageControl navigiere und dann wieder zu einer vorigen aufgerufenen sind die Titel meiner Listview weg!
WARUM!?


Alle Zeitangaben in WEZ +1. Es ist jetzt 12:52 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz