When you call CoInitialize(NULL) function how it works
internally.
Answers were Sorted based on User's Feedback
Answer / sandeep mishra
CoInitialize will initialize the COM library and will move
the executing thread to a STA or Single Threaded Apartment
Apartment is the logical entity where threads live.
| Is This Answer Correct ? | 14 Yes | 1 No |
Answer / dipa
This function is used to initialize a component object
model.
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / chandrasekharreddy siddamreddy
CoInitialize(NULL) function internally assigns a ID to the
calling thread i.e., Appartment ID. Without this ID SCM
doesn't allow you to access the COM Component.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / rathakrishnan
CoInitialize() is initializing the COM object libraries for
that particular thread.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / ramesh pedhamalla
CoInitialize(NULL) function internally assigns a ID to the
calling thread i.e., Appartment ID. Without this ID SCM
doesn't allow you to access the COM Component......
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ramesh pedhamalla
CoInitialize(NULL) function internally assigns a ID to the
calling thread i.e., Appartment ID. Without this ID SCM
doesn't allow you to access the COM Component.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sachinmundhra
Refer to below given link.
http://msdn.microsoft.com/en-us/library/ms809971.aspx
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / krishna sagar
CoInitial(NULL) will take your main thread into the
appartment.
| Is This Answer Correct ? | 2 Yes | 6 No |
Is dcom dead?
Explain queued components.
How to create an instance of the object in COM?
How do you make a NET component talk to a COM component?
What is IUnknown? What methods are provided by IUnknown?
What is reference counting in com?
How to Use structs in COM interfaces when Automation compatibility is not an issue?
Does .net replace com?
How does a DCOM component know where to instantiate itself?
Which namespace do the classes, allowing you to support COM functionality, are located?
Can I use .net components from com programs?
What are the purposes of AddRef, Release and QueryInterface functions