I am using VB .net 2005. I am using the code provided in the Example (
https://knowledge.opentext.com/knowledge/llisapi.dll/InitiateWithAttachments.vb?func=doc.fetch&nodeId=3742564&viewType=1) in my LAPI application.Now to use LL_Initialize(LL_HEADER_VERSION) function, I have added lapi.vb class in my project and using like this lapi.LL_Initialize(lapi.LL_HEADER_VERSION).This class has code (I copy pasted) which is provided in the \Program Files\Open Text\LAPI\vbmodule\lapi.bas and now using this class. Is there any other class who has functions LL_Initialize and variable LL_HEADER_VERSION. As we can use function realted to documents by declaring an object of class lapi_documents e.g. Imports com.opentext.apiPrivate Sub mysub() Dim lapi_docs As lapi_documents lapi_docs.LL_CreateFolder()End Sub