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 |
which property of menu cannot be set at run time.
What is vbs file?
Write the correct order of execution of following form?s events: initialization, Load, Activate, Refresh , Paint
What are properties available in Clip Board?
How do I do drag & drop between applications?
What is meant by building a recordset.
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.
What is the max size allowed for Msgbox Prompt and Input Box?
Which controls have refresh method?
It possible to call OLEDB?s Features directly in VB without using any control?
What is DDE?
How do I speed up control property access?