001
06.04.2004, 13:15 Uhr
Pablo
Supertux (Operator)
|
Visual Basic: |
Open FileName For Input As #fno Do Until EOF(fno) Line Input #fno, tmp txtFile.Text = Text Loop Close #fno
|
Schau richtig nach! Erstens txtFile solltest du dort nicht verwenden, wenn du in OpenFile schon Text byRef bekommst. Zweitens du liest die Datei #fno und speicherst den Inhalt der Zeile in tmp, benutzt du tmp aber nie.
Mein Vorschlag:
Visual Basic: |
Open FileName For Input As #fno Do Until EOF(fno) Line Input #fno, tmp Text = Text & vbCrlf & tmp ' & vbCrlf benutzen, weil sonst es keinen Zeilenabbruch gibt. Loop Close #fno
|
-- A! Elbereth Gilthoniel! silivren penna míriel o menel aglar elenath, Gilthoniel, A! Elbereth! |