I get an overflow error when the file Im writing to reaches approx 2.8 megs.
How can I manage this?
I need to be able to know the file size in my program, and alert the user when the file size reaches maximum.
Appreciate the help, tried searching for it on this forum, didnt yield any positive results.
Here is an abstract example of what Im doing:
Open "filename" for append as#1
write#1,a,b,c
close 1
If the file gets to a certain size, when I try to read from in, it gives me a data overflow error.
Im reading (simply) like this:
open "filename" for input as #1
do until eof(1)
input#1, a,b,c
loop
close.
How can I manage this?
I need to be able to know the file size in my program, and alert the user when the file size reaches maximum.
Appreciate the help, tried searching for it on this forum, didnt yield any positive results.
Here is an abstract example of what Im doing:
Open "filename" for append as#1
write#1,a,b,c
close 1
If the file gets to a certain size, when I try to read from in, it gives me a data overflow error.
Im reading (simply) like this:
open "filename" for input as #1
do until eof(1)
input#1, a,b,c
loop
close.