environment

G

Guest

There is a vb6 standard exe. This exe makes calls to other Com dlls and dot
Net dlls and exes. In this scenario, is the application running in the dot
net environment or com environment?
 
N

Nicholas Paldino [.NET/C# MVP]

Tim,

COM. VB6 doesn't run .NET unless it uses a COM component that is
created through .NET.

There is no relation between the two.

Hope this helps.
 
W

Willy Denoyette [MVP]

|
| There is a vb6 standard exe. This exe makes calls to other Com dlls and
dot
| Net dlls and exes. In this scenario, is the application running in the dot
| net environment or com environment?

Don't know for sure why you call this environments, I would call it
technologies.
VB6 uses COM to call into native COM objects, if calls into .NET components,
it does so through COM and the COM interop layer presented by the .NET
runtime which is loaded in-proc or out-proc depending on the type of
external component.

Willy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top