maximum size log file?

W

ward

Hello,

I have a VBA application, in which I also write debugging
information to a log file, using the following statement:

Open LOG_FILE For Append As #1
Print #1, PrefixText & tMessage
Close #1

Does anybody know how big this file can get before the
application will generate an error? I.e. what is the
maximum file size to write to?

thanks for any help,
Ward
 
A

Andi Mayer

Does anybody know how big this file can get before the
application will generate an error? I.e. what is the
maximum file size to write to?
Sorry I don't know think it should be the OS size.
Why you dont't try it out yourself with
or I=0 to 100000000000000000

.......

next I

if you reach the Gigabyte boundry you know that you can have a lot of
errors

If you expect an answer to a personal mail, add the word "manfred" anywhere in the message
MW
 
Top