Hii

I m stucked into a very simple problem , please help me

I had developed a Standard Exe proj and anActivex Dll proj .
In the ActiveX Dll proj , I created a module and add a public sub into it say "Create()". Now I want to call this sub from my standard exe proj . Ihad given the reference of that proj also even though it says method not defined .

-------Standard Exe proj -------

public sub Main()
Create
end sub

--------End----------


----Active X Dll-------------
----In a module-------

public sub Create()
'VB Code Inside
End sub

-------End-----------

what could be the problem ????


Thanks in Advance