Nothing
The Nothing constant is used to represent a non-existant
object. It is primary used to destroy an object when doing
object-oriented programming.
You must use the Set keyword when assigning an object
variable Nothing. Just like you would normally assign a
new object to a variable, you also assign it nothing as shown
in the sample below:
Set oMail = Server.CreateObject("CDONTS.mail") ' perform some action here ... send an email
Set oMail = Nothing
|
 |

|