G Guest Aug 30, 2007 #1 Is it possible to refernce and utilize in MS Access a DLL written in Visual Basic 2005? Thank you.
G Guest Aug 30, 2007 #2 I am no expert but is that not what APIs are all about. http://www.mvps.org/access/api/index.html They all seem to be making call to various dlls.
I am no expert but is that not what APIs are all about. http://www.mvps.org/access/api/index.html They all seem to be making call to various dlls.
A Albert D. Kallal Aug 31, 2007 #3 Len said: Is it possible to refernce and utilize in MS Access a DLL written in Visual Basic 2005? Thank you. Click to expand... Well, VB.net (2005) can create a standard windows "com" object, and they can be used like any other automaton object. Thus, if your .net program is correctly registered as a windows com object, then yes..you can use it. You have to use reams from the .net tools to correctly "register" that dll. I would ask this question in a .net group... If the .dll is written with being used as a com object interface...it should be usable.... This process is mentioned here: http://www.codeproject.com/dotnet/cominterop.asp#PART2 While the above example is vb6, the same process would work for ms-access...
Len said: Is it possible to refernce and utilize in MS Access a DLL written in Visual Basic 2005? Thank you. Click to expand... Well, VB.net (2005) can create a standard windows "com" object, and they can be used like any other automaton object. Thus, if your .net program is correctly registered as a windows com object, then yes..you can use it. You have to use reams from the .net tools to correctly "register" that dll. I would ask this question in a .net group... If the .dll is written with being used as a com object interface...it should be usable.... This process is mentioned here: http://www.codeproject.com/dotnet/cominterop.asp#PART2 While the above example is vb6, the same process would work for ms-access...