Autor Beitrag
Fabian W.
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1766

Win 7
D7 PE
BeitragVerfasst: Di 24.05.05 18:08 
Hallöchen,

Ich muss wissen wie ich in eine Listview mit dem Style vsreport (Coloums: 3-spaltig) n Item eintragen, abruf, bearbeite, lösche usw

Die Spalten sind: Titel, Länge, Bewertung

Da soll dann zum beisp stehen: Titel 1:20 Note: 2

Im Forum hab ich nix gefunden.

Danke
patrick
ontopic starontopic starontopic starontopic starontopic starofftopic starofftopic starofftopic star
Beiträge: 1481

WIN2k, WIN XP
D6 Personal, D2005 PE
BeitragVerfasst: Di 24.05.05 18:54 
du musst zu jedem item 2 subitem hinzufügen. diese werden dann in den anderen spalten angezeigt.
und so gehts:
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
  var ListItem: TListItem;
begin
  ListItem:=ListView1.Items.Add;
  ListItem.Caption:='MainItem';
  ListItem.SubItems.Add('SubItem');
  ListItem.SubItems.Add('SecondSubitem');
end;


viel spaß damit

_________________
Patrick
im zweifelsfall immer das richtige tun!!!
Fabian W. Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1766

Win 7
D7 PE
BeitragVerfasst: Di 24.05.05 20:42 
Ich prbier's und melde mich dann, danke :D !!
raziel
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 2453

Arch Linux
JS (WebStorm), C#, C++/CLI, C++ (VS2013)
BeitragVerfasst: Mi 25.05.05 08:34 
Ich habe deine zweite Frage mal abgetrennt.

_________________
JSXGraph