VBA.dll

  • Thread starter Thread starter Karin
  • Start date Start date
K

Karin

Does anyone know what/which functions are included in this library
(VBA.dll)?

It has been added to my project and is causing me problem since I can't add
it to the gac.
I would like to find out which of the functions I'm using and hopefully I'll
be able to do a workaround.

Another solution would be if someone know how to solve the adding problem...

/K
 
Karin,

VBA.dll is basically the dll that had all the built-in functionality
from VB6. Why is this being included in your project? Is it an interop
assembly? The original is a COM dll.
 
Hi Nicolas,
In my project I have a reference to an old vb6 dll that I've created a
wrapper class for.
My project is a forms application. I have tried to re-create it and it seems
like the VBA.dll is added when I add the reference to the wrapper class.
(If it is a COM-dll it shouldn't make sense without registration, should it?
But it is enough to just include it in the directory where the exe-file is
if run locally.)

/K

Nicholas Paldino said:
Karin,

VBA.dll is basically the dll that had all the built-in functionality
from VB6. Why is this being included in your project? Is it an interop
assembly? The original is a COM dll.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Karin said:
Does anyone know what/which functions are included in this library
(VBA.dll)?

It has been added to my project and is causing me problem since I can't add
it to the gac.
I would like to find out which of the functions I'm using and hopefully I'll
be able to do a workaround.

Another solution would be if someone know how to solve the adding problem...

/K
 
Back
Top