The DLL UNLOAD command specifies the Dynamic Link Library (DLL) to UNLOAD from the HTBasic program. You may specify a specific DLL to remove or simply remove all of them by using the syntax:
DLL UNLOAD "dllname" or ALL
Where:
dllname must be the name of a DLL to load.
Samples of this command could include:
DLL UNLOAD ALL !Removes all loaded DLLs
DLL UNLOAD "Flowtrak" !Removes only Flowtrack.dll
|