Delphi-Quellcode:
var
F: TextFile;
S: string;
begin
if OpenDialog1.Execute then { Display Open dialog box }
begin
AssignFile(F, OpenDialog1.FileName); { File selected in dialog }
Reset(F);
Readln(F, S); { Read first line of file }
Edit1.Text := S; { Put string in a TEdit control }
CloseFile(F);
end;
end;
Enfach mal aus der Hilfe kopiert. Man sollte aber auch dmittels dr Forensuche oder zu Not auch mit Google fündig werden.
Etwas mehr Eigeninitiative bitte.