VB - DLL - Question(s)

Hi,

i have some dll’s and a sample programm written in vb. Now i have to use this functionality in notes, but i dont know how to start…

The samples says:

Public gisrConn As ISRConnection

Set gisrConn = CreateObject(“ISR400Connection.Connection”)

gisrConn.ConnectInfoStore bla, bla, bla

ok, so, i know how to declare functions, but how can i declare the class ISRConnection which i need for the createobject?!?

Oh, maybe it helps…I have installed the win32 com api from the product, so i have all dlls and the api.

thanks for your help

Subject: VB - DLL - Question(s)

Oh. I found the entries in the ole class list…So i think i dont have to declare functions?

Subject: RE: VB - DLL - Question(s)

You don’t need to declare the functions, if you use OLE automation aware objects with CreateObject.On not OLE automation aware DLLs, you still have to declare the functions, but then, you don’t use CreateObject.

Andreas Hoster

mailto:andreas.hoster@herma.de

Subject: VB - DLL - Question(s)

Here’s a link to some information on DLL’s etc.

http://www-10.lotus.com/ldd/46dom.nsf/55c38d716d632d9b8525689b005ba1c0/1784875e0716ea5685256d3d0034abbd?OpenDocument

Hope this helps

Sai

smaganti@dek.com

Subject: RE: VB - DLL - Question(s)

ok thanks to bothi will try it