can anybody explain to me why I have a extra line at the end of my output file even thou that line doesn't exist in the input file i'm using v2.10f in windows 95
part of code:
open arg$(1) for binary as #1 len = 8096
open arg$(2) for binary as #2
do
get$ #1,435,idx$
idx1$ = left$(idx$,433)+chr$(13,10)
if idx1$ = "" then exit loop
put$ #2,idx1$
loop until eof(1)
close #1,#2
end
part of code:
open arg$(1) for binary as #1 len = 8096
open arg$(2) for binary as #2
do
get$ #1,435,idx$
idx1$ = left$(idx$,433)+chr$(13,10)
if idx1$ = "" then exit loop
put$ #2,idx1$
loop until eof(1)
close #1,#2
end
Comment