Einzelnen Beitrag anzeigen

exoduscrises

Registriert seit: 14. Feb 2005
Ort: Berlin
23 Beiträge
 
Delphi 7 Personal
 
#7

Re: Pfad in einer Listbox verstecken

  Alt 1. Mai 2005, 12:57
danke, das hilft mir erstmal sehr weiter ... Dann mach ich mich mal ans Werk

hab es mit Hilfe von Chakotay1308 so gelöst ... thx nochmal ^^

Delphi-Quellcode:
type
  TEntry = class(TObject) // Typ
    fPath: string; // Dateipfad
 end;

{...}

var
PLitem:TEntry;
begin
{...}
PLitem:=TEntry.Create();
PLitem.fPath:=OpenDialog1.FileName;
ListBox1.AddItem(CutPathName(OpenDialog1.FileName), PLitem);
end;
mfg Stefan

(Delphi 7 Personal | Delphi 2005 Personal)
  Mit Zitat antworten Zitat