Using the COM DLL from other programming environments

In order to use the ITLogLib2 COM DLL your programming environment must support the usage of COM DLLs. Generally there are two ways to use COM objects:

·      The "typed" way: This way provides compile-time type checking and is the recommended way for languages that provide type-checking, i.e. VB, VBA, Delphi and C++ languages.
More
here.

·      The "untyped" way: This way provides no compile-time type checking. Thus it is less secure and slower during runtime. But it is typically the only way for scripting languages (i.e., WScript, VBScript, JScript).
More
here.