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 can I change the printer Windows uses in code without using the print common dialog? How can I change orientation?

0 Answers  


what is the difference between ADO and RDO in vb

3 Answers  


what is the Difference between Listindex and Tab index?

1 Answers  


How do I get a bitmap picture in a field in an Access database?

0 Answers  


what is the Benefit of wrapping database calls into MTS transactions?

1 Answers  






To populate a single column value which dbcontrols you to use?

0 Answers  


How do you call a function in a DLL?

1 Answers  


Explain the types of Views in Listview Control.

0 Answers  


how to get printout between two dates informations in datareport in vb6.0

1 Answers  


What is datagrid in vb net?

0 Answers  


What is DBSqlPassThrough?

0 Answers  


Is it possible to call oracle database through ADO control or Object?

1 Answers  


Categories