Can Visual Basic .NET applications access VB 6.0 components and vice versa?

The . NET Framework was designed from the ground up to interoperate with COM. COM components can call .

NET assemblies, and vice versa. Furthermore, . NET assemblies can be built to be referenced just like COM components are referenced.

To do this, you build your assembly so that it is COM-callable, and your code will be able to reference the assembly’s functionality and interfaces. COM-callable assemblies can be referenced from Visual Basic 6.0 applications as if they were ordinary COM components. In this case, interoperability may be as simple as referencing the correct assembly’s type library (.tlb file) and accessing the desired functionality.

On the other hand, to access Visual Basic 6.0 code from Visual Basic . NET clients, you must expose the Visual Basic 6.0 code as a COM component, and then reference it as such from the Visual Basic . NET client.

More.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions