To find delete folder, in my code in use a varaiable with the following declaration "Dim Folder as Folder". It was working fine for years. But suddenly when exceuting the line "Set folder = fso.GetFolder(strParamPath)" it gives "Type mismatch" I dont know why suddenly this error has come. So I changed the declaration to "Dim Folder as Scripting.Folder" it seems to work. Why it was working fine and now it is not working? Can any one help me?
|
|
It's possible a hotfix/update has done something to the VB libraries/bindings. But without digging into every hotfix MS have released, there's no way to confirm that :-) If you can pin it down to a speific day and find out what updates were installed in the intervening period, that might narrow it down. |
||
|
|
|
|
Using Possible explanations:
Intellisense can help you find out what the
and then type
Intellisense should drop down a list of the members of fol. Select one of them so that Intellisense completes the line for you, something like.
Now put the cursor on |
||||
|
