Tagged Questions
The atlcom tag has no wiki summary.
5
votes
1answer
198 views
How to generate a 64 bit COM Proxy
I have a 32 bit COM server (and the source code for it)
The source generates the server and a 32 bit proxy stub. (The MIDL compiler generates the proxy stub code.)
I would like to make a 64 bit proxy ...
5
votes
2answers
322 views
What simple methods are there to wrap a c++ based object model with a COM interface
I have a pre-existing c++ object model which represents the business layer tier of an application. I want to be able to expose the object model to applications written in other languages i.e vbscript, ...
3
votes
1answer
120 views
How to create anonymous IDispatch functions with ATL?
Is there an easy way to create a class that is derived from IDispatch and that can be passed to API like this (this is C++ ):
pDOM2->attachEvent(CComBSTR("event"), new DispatchFunction);
I know ...
3
votes
1answer
314 views
Access methods from ATL dll file in C#
I've been working with trying to link up some c++ code and wrap it inside a COM object to access via C#. I created an atl project and added a simple method such as Add(double a, double b). The ...
3
votes
2answers
90 views
Can I use the newer versions of Visual Studio to do “old” things?
I have several ATL/COM-based DLLs that I've been using Visual C++ 6.0 on. I require a couple of "old" things out of the generated DLLs:
(1) They must be compatible with projects developed in Visual ...
1
vote
1answer
140 views
ATLComTime.h is part of what redistributable?
I added functionality to a code base someone else wrote and while the "Not using ATL" flag was set in VS2005 I see that there is #include <ATLComTime.h> in one of the files. I have only sent ...
1
vote
2answers
255 views
dynamic_cast of a COM object to a COM interface doesn't bump the reference count, does it?
If I have a C++ class, X, which implements the COM interfaces IY and IZ, and I have a pointer y to the IY interface of an object of type X, and I do this:
IZ *z = dynamic_cast<IZ *> ( y );
...
1
vote
2answers
1k views
Building Proxy/Stub dll in VS 2008
I have a ATLCOM project migrated from VC6 to VS2008. My question is, how do I build the ps dllon VS 2008?
New ATL projects in VS2008 have a separate PS project which builds the ps dll. But the ...
0
votes
2answers
30 views
Regarding SafeArrayPutElement
FYI I am begginer in COM\ATL and unicode
I am using SafeArrayPutElement(safearray*,LONG,void*) in my code and the problem is...
here, the function works fine when i give the third parameter as ...
0
votes
1answer
109 views
ATL: Can't remove a method from a COM interface - ALWAYS reappears like magic
Environment: VS2008, C++ ATL COM, 64Bit, Windows 7
I'm trying to remove a method from an older COM interface. I modify the *.idl, modify the associated *.h and *.cpp implementation files and also ...
0
votes
1answer
101 views
How to pass COM pointer from one process to another?
I have an interface pointer to an COM object sitting within process 1. I would like to get access to the same object from another process. How can I achieve this purpose? I believe directly passing ...
0
votes
1answer
117 views
How to convert from BSTR to DATE
COleVariant var(bstrString);
var.ChangeType(VT_DATE);
DATE date = var.date;
not seems to be working. Any ideas will be appreciated. Thanks.
0
votes
2answers
52 views
How is MFC app commiting to virtual memory?
I am working on an MFC app that seems to be automagically committing to ~160MB of virtual memory. The app typically runs at 10-14MB of memory usage so this level of committed memory seems excessive. ...
0
votes
1answer
788 views
How do I pass an array of structs (containing std:string or BSTR) from ATL to C#. SafeArray? Variant? COM interface question
I have an ATL COM object that I am using from C#. The interface currently looks like:
interface ICHASCom : IDispatch{
[id(1), helpstring("method Start")] HRESULT Start([in] BSTR name, ...
0
votes
1answer
80 views
Support of ATL WebBrowser controls in Windows mobile 7.0
Just being curious, we would like to know the support for ATL webbrowser control (IWebBrowser2) is available on next windows mobile 7.0 version.
Can anybody confirm the same.
Thanks,
Ramanand
0
votes
1answer
86 views
ATL/COM: Defining a COM interface that won't be available outside of the DLL?
I have an ATL/COM-based DLL, made using VC++ 6.0. It's used for various executables built using VB6.
I want to add some COM interfaces that will not be accessible via VB6, for the internal use of ...