-
Hello
My Q is
When I made declare for File System Object, I didn't
found this object in the list
Example
Dim fso as new here("not found file system object") in the
list.
*I'm using vb6.0.
Is any way to add this object to my aplication ?
with best regards.
-
FSO's are an active x control, and as such need to be declared a bit differently.
Dim FSO
Set FSO = CreateObject("Scripting.FileSystemObject")
Hope this helps ;)
-
Also, have you added Microsoft Scripting Runtime(scrrun.dll) to your project references?