P
Peter Hewett
Hi All
I'm using the Scripting FileSystemObject. There's an Enum called
"FileAttribute" and has the following members:
Alias, Archive, Compressed, Directory, Hidden, Normal, ReadOnly, System,
Volume.
Being an Enum, you can do the usual stuff like:
Dim faAttributes As Scripting.FileAttribute
faAttributes = Archive Or Hidden Or ReadOnly
Now who knows how to refer to the system member of the FileAttribute Enum????
I know how to kludge around it but what's the correct syntax, since you can't
use:
faAttributes = System
Thanks in advance + Cheers - Peter
I'm using the Scripting FileSystemObject. There's an Enum called
"FileAttribute" and has the following members:
Alias, Archive, Compressed, Directory, Hidden, Normal, ReadOnly, System,
Volume.
Being an Enum, you can do the usual stuff like:
Dim faAttributes As Scripting.FileAttribute
faAttributes = Archive Or Hidden Or ReadOnly
Now who knows how to refer to the system member of the FileAttribute Enum????
I know how to kludge around it but what's the correct syntax, since you can't
use:
faAttributes = System
Thanks in advance + Cheers - Peter