Hallo #,
irgendwie stehe ich auf dem Schlauch.
Ich fülle ein ListView mit Konstanten.
Jeder Konstante ist ein Text zugeordnet.
Wie bekomme ich die Konstante als verstecktes Feld mit rein.
Data geht nicht.
Bsp.
Delphi-Quellcode:
const
C_X1 = 1;
C_X2 = 2;
ListItem:= ListView.Items.Add;
ListItem.Caption:= ConstAsText(C_X1); // ConstAsTexti st meine
ListItem.Data:= ?? order wo soll C_X1 hin ?
Heiko