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 |
Explain Get, Let, Set Properties?
Draw Sequence Modal of DAO and Explain?
What is Zorder Method?
What is the differece between the (name) and caption properties of a control?
Is visual basic easy?
What is the use of ActiveX Documents?
Which tool is used to configure the port range and protocols for DCOM communications?
How would you Create a Query Builder and Explain its uses
Is it possible to set a shortcut key for label?
What is DSN?
How would you add elements and pictures to listitems in listview control?
How do you avoid the "Invalid use of null" error when reading null values from a database?