Unload | |
Syntax: | object.Unload UnloadString |
Parameters: |
UnloadString
As String -
This parameter is not used, pass an empty string. |
Description: | Unload method releases all instances of TADB COM objects. This method is no longer mandatory and provided for backward compatibility. Example: Dim oTADBRoot As Object Set oTADBRoot = CreateObject("TADB.TADBRoot") If oTADBRoot Is Nothing Then MsgBox "Root Object is not
created" End If oTADBRoot.Load "TRK7", "" ... ... ... ... oTADBRoot.Unload "" |