home *** CD-ROM | disk | FTP | other *** search
- VIM32 OCX Control
- Copyright 1998 by Andrejus Chaliapinas
-
- This product was written while keeping in mind success of VIM32 VB Wrapper DLL
- and as further step to make VB Developer life easier while dealing with Lotus
- cc:Mail through Lotus VIM32 Toolkit.
-
- Version 1.0.0.1 beta
- --------------------
- In this version five funstions were implemented:
-
- Session management functions:
-
- SessionClose
- SessionInitialize
- SessionOpen(Path As String, Name As String, Password As String)
- SessionTerminate
-
- Miscelanious functions:
-
- GetStatus(Fullstat As Long)
- GetExtStatus(Fullstat As Long)
-
- Each of these functions return Long as result.
-
- ---
- To try them you need to register VIM32.OCX control on your system,
- place it on any VB5 form and try this code in Form_Load procedure:
-
- Private Sub Form_Load()
- Dim st As Long
- Const VIM_OK = 0
- st = VIM321.GetStatus(VIM321.SessionInitialize)
- st = VIM321.GetStatus(VIM321.SessionOpen("path", "name", "password"))
- If st = VIM_OK Then
- st = VIM321.GetStatus(VIM321.SessionClose)
- End If
- st = VIM321.GetStatus(VIM321.SessionTerminate)
- End Sub
- ---
-
- Implemented functions and their analogs in VIM32.DLL or VIM32 Wrapper:
-
- SessionClose --> VIMCloseSession in VIM32.DLL
- SessionInitialize --> VIMInitialize in VIM32.DLL
- SessionOpen --> VIMOpenSession in VIM32.DLL
- SessionTerminate --> VIMTerminate in VIM32.DLL
-
- GetStatus --> vb_VIM_STATUS in VIMWRP32.DLL
- GetExtStatus --> vb_VIM_EXT_STATUS in VIMWRP32.DLL
-
- All other functionality will be implemented soon.
-
-
-
-