View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
DM Unseen DM Unseen is offline
external usenet poster
 
Posts: 233
Default DLL Entry Points

Is this a VB dll that is actually implementing a COM/ActiveX component?

Those are not real WInAPI DLL's but ActiveX DLL's. You cannot access
them through a declare, you need to add a reference to them!

VBA editor(ALT-F11) Tools-references-browse- select dll

BTW functions need to be public in VB to be visible as methods in VBA!

DM Unseen