VB.net

J

Jeremy Mason

So, I currently have a problem with updating to vb.net. I want to get away
from my Access frontend and modules. However because of the size of my
database I need to be able to access my new VB.net modules from my
Access/VBA modules. I am having problems with setting up the references. I
reference the .tlb from my bin file located with my VB.net project, but
nothing is referenced to. I would appreciate any information to help me get
out of this black hole I am in
 
N

Norman Yuan

I suppose you have used RegAsm (or set Register for COM interop to true in
VS.NET's project configuration) to register the .NET DLL as COM.

Unfortunately, even you have done that and set reference to that *.tlb file
from .NET dll in VB/VBA environment, you do not get Intelli-sence prompt, as
you do with regular COM library. It is by design.
 
Top