View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
mrt mrt is offline
external usenet poster
 
Posts: 70
Default Inheritance of references

Hello,

I have a VBA project (P1).
I have a second VBA project (P2) that has a reference to P1.

I have some c++ dlls that are used in P1 and P2.

Is there a way I can make P2 inherit from the references of P1? I know I can
do that easily if the DLL is in VB (Public MyObj as New VBProjectName.Class),
but I can't find how to do that with a C++ DLL.

Thanks for your help,

Mr. T