Thanks for the replies. The only thing i could find was the COM Toolkit documentation.Is there another way I can connect VB.NET with Lotus Notes? Or any other place I can get the COM Toolkit from.
Subject: RE: There really is no such “COM Toolkit”. What you do is install a Notes Client on your machine.
ftp to ftp.lotus.comcd pub
cd lotusweb
cd devtools
mget com.*
comdoc.chm ← documentation
dtcom.exe ← toolkit
however, this is only usefull for c/c++ developers. All of you VB guys should just do what has been already suggested and include the reference to the .tlb
After registering nlsxbe.dll as a COM server (if it wasn’t registered at install):
in each project in your solution that needs it, add a reference. Select the COM tab of the reference dialog, and select “Lotus Domino Objects”. This will create a garbage-collectible DLL in your project /bin called Interop.Domino.dll to act as a wrapper around the native Domino object library.
in each class that needs to use Notes/Domino, use Imports Domino – that will keep you from having to use the whole namespace every time you declare or set a Notes object.
Create a session using the New method rather than CreateObject: