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

which property of menu cannot be set at run time.

0 Answers  


What is vbs file?

0 Answers  


Write the correct order of execution of following form?s events: initialization, Load, Activate, Refresh , Paint

3 Answers  


What are properties available in Clip Board?

1 Answers  


How do I do drag & drop between applications?

0 Answers  


What is meant by building a recordset.

0 Answers  


Which ADO object is used to perform commit / rollback ? Is it command or connection or recordset I am not sure of the options given. So please let me know the answer if it is something else.

4 Answers   Infosys,


What is the max size allowed for Msgbox Prompt and Input Box?

5 Answers   AZTEC, IBM,


Which controls have refresh method?

2 Answers  


It possible to call OLEDB?s Features directly in VB without using any control?

0 Answers  


What is DDE?

1 Answers  


How do I speed up control property access?

0 Answers  


Categories