what is the diff between inprocess and out of process ?



what is the diff between inprocess and out of process ?..

Answer / guest

An in-process component is implemented as a DLL, and runs
in the same process space as its client app, enabling the
most efficient communication between client and
component.Each client app that uses the component starts a
new instance of it.

An out of process component is implemented as an EXE, and
unlike a dll, runs in its own process space. As a result,
exe's are slower then dll's because communications between
client and component must be marshalled across process
boundaries. A single instance of an out of process
component can service many clients.

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More Visual Basic Interview Questions

How to control the file?

0 Answers  


What are the types of API Types?

3 Answers  


Write the Steps in Creating an ActiveX Control?

0 Answers  


What is the difference Between ADO and other data access objects?

2 Answers   HCL,


Which method is preferred to save data like database to the disk?

0 Answers  






Can Redim be used to declare a new array ?

13 Answers   Infosys,


What is Internet Explorer and its uses?

0 Answers  


How will you retain the values of existing elements in a dynamic array when you want to alter the array size?

1 Answers  


what component is used in vb to link to the database?

2 Answers   Satyam,


State about the different types of visual basic data?

0 Answers  


How does a DCOM component know where to instantiate itself?

1 Answers   Synechron,


Difference between Linked Object and Embedded Object?

0 Answers  


Categories