View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Inheritance of references

I don't believe this is possible.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"MrT" wrote in message
...
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