Autor Beitrag
Killi
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 299

Win*
D6 Prof
BeitragVerfasst: Mi 16.07.03 12:53 
Hi!

Hab de Code hier:
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
     AssignFile(F1, 'daten.txt');
     Rewrite(F1);

     Write(F1, 'Persönliche Daten:');
     Write(F1, 'Firma / Name: ' + EName.Text);
     Write(F1, 'Str + Nr: ' + EStr.Text);
     Write(F1, 'PLZ + Ort: ' + EPLZ.Text);
     Write(F1, 'E-Mail: ' + EEMail.Text);
     Write(F1, 'Tel: ' + ETel.Text);
     Write(F1, 'Tel2: ' + ETel2.Text);
     Write(F1, 'Fax: ' + EFax.Text);
     Write(F1, 'Mobil: ' + EMobil.Text);

     CloseFile(F1);

und würde gern nach jeder Zeile einen Zeilenumbruch erhalten - wie mache ich das?
Keldorn
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 2266
Erhaltene Danke: 4

Vista
D6 Prof, D 2005 Pro, D2007 Pro, DelphiXE2 Pro
BeitragVerfasst: Mi 16.07.03 12:58 
Hallo

mit writeln statt write

Mfg Frank

_________________
Lükes Grundlage der Programmierung: Es wird nicht funktionieren.
(Murphy)
Killi Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 299

Win*
D6 Prof
BeitragVerfasst: Mi 16.07.03 12:59 
THX für die schnelle Antwort!!!