How to expose COM Module members?

Apr 16 2004 2:02 AM
Hi guys! I created an ActiveX DLL (VB 6) and define some public methods/functions inside a MODULE and i also created some public methods/functions inside the CLASS then save it as COM DLL. I imported it to assembly code using tlbimp and installs it to GAC (succesfull). However when i Add a Reference to the created assembly (inside VS.NET) it does not reflect the those public methods/functions i created in the Module...only the methods/functions i created in the Class. Why not reflect? Can't .NET recognize MODULE members and only Class members? I even tried adding it as a COM reference and not as GAC assembly but the thing. The output of ildasm utility is the same. How would i be able to use then the methods/functions inside the module of my COM/assembly?