Finding circular references in VB6 -
i'm trying compile code in vb6, , tells me "circular dependencies between modules." doesn't deign tell me modules have these dependencies.
is there way can find more information problem?
you have projects form circular chain of references. use menu project , references see other projects references. other projects part of application. draw rough graph of links , @ point find references loop 1 of projects.
you need focus on references projects created yourself. need check projects created includes custom activex controls. found under menu project->components.
likely find there handful of classes referencing. in case can separate them out activex dll/library , have original projects reference instead of each other.
the reason issue arises because com relies type libraries embedded in library call classes , methods. referenced libraries included in typelib in manner similar include file in c. circular references have no "bottom" com can't bottommost library form typelib.
Comments
Post a Comment