Hi, I know set in VBScript is used for assigning the object reference to the variable. I would like to only understand why its neccessary:
Set fso = CreateObject("Scripting.FileSystemObject")
what about:
dim fso
fso = CreateObject("Scripting.FileSystemObject") //would not it create the object directly and assign to the variable?
Thanks