Delphi-PRAXiS
Seite 2 von 2     12   

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 checkbox (https://www.delphipraxis.net/98156-listview-checkbox.html)

DeddyH 22. Aug 2007 14:22

Re: Listview checkbox
 
Zitat:

Zitat von s-off
...or store it in an array, string variable or similar for further using.

Or use a TList to store every index.

Razor 22. Aug 2007 14:25

Re: Listview checkbox
 
It will only show how much are checked but not index of every checked item :?

DeddyH 22. Aug 2007 14:28

Re: Listview checkbox
 
Delphi-Quellcode:
for i := 0 to ListView1.Items.Count - 1 do begin
      if ListView1.Items[i].Checked then
         List_With_Indices.Add(i); //you have to implement this yourself
   end;

Razor 22. Aug 2007 14:42

Re: Listview checkbox
 
Does anyone know any good event component like alaram or something?

DeddyH 22. Aug 2007 14:50

Re: Listview checkbox
 
New question -> new thread ;)


Alle Zeitangaben in WEZ +1. Es ist jetzt 08:55 Uhr.
Seite 2 von 2     12   

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