![]() |
ListView, Column Count?
hello all :)
Ich habe eine frage.. wie kann ich aus einer ListView spezifisch eine Column Counted, welche den Eintrag -1 haben :) hoffe jemand versteht das :D |
Re: ListView, Column Count?
sorry, ich verstah di nöd....
|
Re: ListView, Column Count?
also.. ;)
ich habe eine xml -> listview (column 1-7) nun möchte ich genau aus column[7] alle gezählt haben, welche den eintrag '-1' haben wie mach ich das? |
Re: ListView, Column Count?
etwa so:
Delphi-Quellcode:
for iLoop := 0 to Pred(ListView1.Items.Count) do
if Listview1.Items[iLoop].SubItems[6] = '-1' then begin // ... end; end; |
Re: ListView, Column Count?
dass habe ich au schon :)
nun möchte ich aber das ganze in solch einer form StatusBar1.Panels[0].Text := 'Need: '+IntToStr(MainForm.AppsList.Items.xxxxxx); |
Re: ListView, Column Count?
dieses problem bringt mich früher oder später um die ecke.. ich komme einfach nicht vom fleck ;(
|
Re: ListView, Column Count?
Dann pack doch toms Code in eine Funktion, die dir dann die Eintrage mit -1 zurückgibt.
|
Re: ListView, Column Count?
sorry.. aber ich verstehe es nicht..
|
Re: ListView, Column Count?
Delphi-Quellcode:
type
TForm1 = class(TForm) private { Private declarations } function Foo: Integer; public { Public declarations } end;
Delphi-Quellcode:
function TForm1.Foo: Integer;
var i: Integer; cnt: Integer; begin cnt := 0; for iLoop := 0 to Pred(ListView1.Items.Count) do if Listview1.Items[iLoop].SubItems[6] = '-1' then begin Inc(cnt); end; end; result := cnt; end;
Delphi-Quellcode:
StatusBar1.Panels[0].Text := 'Need: '+IntToStr(Foo);
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:37 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