Thanks very much for responding. You've hit the nail on the head. This is exactly my situation.
Could I ask you one more question? If the assembly were a COM DLLand not an executable, how would I get access to the DoSomething function in Class Test from outside the DLL?
Thanks very much for responding. You've hit the nail on the head. This is exactly my situation.
Could I ask you one more question? If the assembly were a COM DLLand not an executable, how would I get access to the DoSomething function in Class Test from outside the DLL?
Would I instantiate...
Dim t as New dllname.Test()
t.DoSomething()
Thanks.