InterviewSolution
Saved Bookmarks
| 1. |
How can you destroy an object in VBScript? |
|
Answer» In order to destroy the objects, we need to use Set Keyword followed by the object name and point it to Nothing. Example − Dim obj Set obj = CreateObject("Scripting.Dictionary")Set obj = Nothing
|
|