According to the help, there are various defined constants for File Objects, but when I tried to use them I kept getting told that I was incorrectly calling the function. I eventually traced it to the fact that the constants did not seem to have any values.
For example
in Set ts = fs.OpenTextFile(temp_file, ForReading, False)
ForReading has no value.
Isthere something special that I am supposed to do to ensure that these constants (ForReading, ForAppending, TristateUseDefault, TristateTrue, TristateFalse), get populated?
TIA