Can I use the count method to get the length of an Array or Textfile? Thanks.
Kou
In VBA, an Array is not an object, so it has no methods, so it has no Count
method. You can get the number of elemnts in a 1-dimensional array using
UBound(<array>) - LBound(<array>) + 1.
A file is a bunch of bytes on a drive. If you create an object that
references the file using something like FSO, I think there is some sort of
Length method you can use to get the length of the file in bytes/characters.
You can use Windows API calls to check a file's length as well.