![]() |
TString - String (Listview und SubItems Ausgabe in String)
Problem:
Ich will die SubItems (Werte) als String in einen String packen. Fehler: TStrings und string - Inkompatible Typen Frage: Wie kann ich die SubItems als String verwenden? Das ist der Code:
Delphi-Quellcode:
for I := 0 to listview1.Items.Count - 1 do
begin richedit1.Lines.AddStrings( '<configuration name="' + listview1.Items[i].Caption + '"' + #13#10 + 'ds-name="' + listview1.Items[i].SubItems[0] + '"' + #13#10 + 'service-url="' + listview1.Items[i].SubItems[1] + '"' + #13#10 + 'lfs-cache-path="' + listview1.Items[i].SubItems[2] + '"' + #13#10 + 'lfs-config-name="' + listview1.Items[i].SubItems[3] + '" />'); end; |
Re: TString - String (Listview und SubItems Ausgabe in Strin
Du nimmst "AddStrings" der RichEdit-Komponente. Diese erwartet "TStrings" und nicht, was du übergibst, nämlich einen stinknormalen String. Nimm Add statt AddStrings.
|
Re: TString - String (Listview und SubItems Ausgabe in Strin
du könntest es so machen:
Delphi-Quellcode:
Allerdings sollte "items.add('dein ganzer sermon');" auch reichen.
stringlist1.text := stringlist1.text + 'dein ganzer sermon';
|
Re: TString - String (Listview und SubItems Ausgabe in Strin
danke, klappt!
|
Re: TString - String (Listview und SubItems Ausgabe in Strin
Zitat:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:32 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