In VB6, when referencing a .NET component, why can't I reference the DLL? Why do I have to reference the .TLB file?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 3 down vote accepted

VB6 has no mechanism that allows it to call managed code directly (i.e. the .Net component). The .TLB file contains the compiled header information that VB6 "understands", and in turn allows it to call the .Net assembly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.