BASIC OPEN File
Verfasst: Sa, 11.10.2008 13:37
Was ist an diesem Codeauszug flasch?
OO3.0 RC3 win Compiler meint: Unerwartetes Symbol Get...
Es fällt auf, dass EOF nicht als BASIC-Befehl erkannt wird - hat grüne Schrift
Code: Alles auswählen
Open fdfFile For Binary As fHdl
While Not EOF(fHdl)
Get #fHdl, , a
If a <> 0 And Not EOF(fHdl) Then
data = data & Chr(a)
End If
Wend
Close #fHdl
Es fällt auf, dass EOF nicht als BASIC-Befehl erkannt wird - hat grüne Schrift