2
votes
1answer
42 views
How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?
I have a COM function that should return a SafeArray via a LPSAFEARRAY* out parameter.
The function creates the SafeArray using ATL's CComSafeArray template class.
My naive impleme …
0
votes
0answers
12 views
Using ADO or OLEDB with ATL
I am writing an class using C++ (ATL).. I need to connect to a database. I am familiar with ADO but I see that all the functions are using IDispatch (late-binding/Automation). I am …
0
votes
1answer
22 views
ATL COM Server - cretaing COM object defined in ATL Server from this server
Hello
I have created the ATL COM Server C++ project using Visual Studio 2005 wizard. I added a new COM class using the ATL Simple Object wizard. Now when I try to create this COM …
0
votes
1answer
34 views
Console App Service or ATL Service
I need to create a service. I know that you can do it with just a console application but it can also be done with ATL.. What are the benefits of the ATL Service vs a simple consol …
1
vote
2answers
43 views
Why use CComBSTR instead of just passing a WCHAR*?
I'm new to COM. What exactly is the advantage of replacing:
L"String"
with
CComBSTR(L"String")
I can see a changelist in the COM part of my .NET application where all strings …
0
votes
1answer
14 views
What’s the difference between COM_INTERFACE_ENTRY_IID and COM_INTERFACE_ENTRY2_IID?
Seems like both COM_INTERFACE_ENTRY_IID and COM_INTERFACE_ENTRY2_IID are for the case when the class is derived from two or more classes each derived from a common interface. Like …
0
votes
0answers
19 views
RegisterClassObjects() Doesn’t Find Classes To Register
I'm in the process of converting an application from Visual Studio C++ 6.0 to Visual Studio 2008 and am running into problems with ATL.
I've been having a whole host of issues, bu …
0
votes
1answer
4 views
Why does ATL COM map scanning code expect the first entry to be of _ATL_SIMPLEMAPENTRY type?
ATL provides a bunch of macros for creating so-called COM maps - chains of rules of how the QueryInterface() call behaves on a given object. The map begins with BEGIN_COM_MAP and e …
2
votes
2answers
36 views
Memory leak for CComBSTR
I have read that the following code causes memory leak. But did not understand why.
CComBSTR str;
pFoo->get_Bar(&str);
pFoo->get_Baf(&str);
How does it cause a lea …
1
vote
4answers
40 views
ComBSTR assignment
I'm confused about COM string assignments. Which of the following string assignment is correct. Why?
CComBSTR str;
.
.
Obj->str = L"" //Option1
OR should it be
Obj-> …
1
vote
3answers
47 views
MFC COM or ATL COM (ActiveX)
I have some MFC code (custom CWnd controls and some classes to expose) that I need to make into an activex / COM object with interfaces. Is it easier to make an ATL project with MF …
0
votes
1answer
19 views
Permission Denied in IE w/ iDispatch DISPATCH_PROPERTYGET
Howdy,
I have a activex control that I've written using ATL, and am running into a somewhat serious and confusing problem.
when iDispatch::Invoke is called with DISPATCH_PROPERTY …
0
votes
2answers
59 views
How to create a VB6 collection object with ATL
or a VB6 - compatible - collection object.
The title says it all, here's the background.
We provide hooks into our .net products through a set of API's.
We need to continue to s …
0
votes
3answers
415 views
Windows service shut down
I use VS6 and ATL with CServiceModule to implement a custom windows service. In case of a fatal error service should shut itself down. Since CServiceModule is available via _Module …
0
votes
1answer
26 views
WebBrowser control from ATL to c#
Hi,
In ATL if I create webbrowser control using IWebBrowser2, it works great in Windows Mobile. I am able to visit all sites, progress bar comes, everything is fine..
rest of UI c …
