The ATL Reference documents the Active Template Library (ATL), a set of C++ class templates that simplify the programming of Component Object Model (COM) objects.
2
votes
1answer
123 views
How to get the Last Active Date of a Process?
I have an assignment were in I have to print the last active date of the process using a COM In Proc Server in C++. I tried doing that with getProcessTimes() function, but that gives me an access ...
2
votes
1answer
173 views
Need Advice on designing ATL inproc Server (dll) that serves as both a soure and a sink of events
I need to design an ATL inproc server that besides exposing methods and properties, also can fire events (source) and serve as a sink for a third party COM control that fires events. I would assume ...
2
votes
4answers
2k views
COM Error 0x80004003 (Invalid Pointer) access MS Outlook contacts
I am some ATL code that uses smart COM pointers to iterate through MS Outlook contacts, and on some PC's I am getting a COM error 0x80004003 ('Invalid Pointer') for each contact. The same code works ...
1
vote
4answers
407 views
strange double pointer null check
Is this a valid null check on a DOUBLE pointer parameter passed in a function
if (!pdblValue) return E_POINTER;
1
vote
6answers
143 views
How to go about multithreading with “priority”?
I have multiple threads processing multiple files in the background, while the program is idle.
To improve disk throughput, I use critical sections to ensure that no two threads ever use the same disk ...
1
vote
2answers
2k views
converting Hex string to unsigned long
Hex string to unsigned long
I have following hex value
CString str;
str = T("FFF000");
How to convert this in to unsigned long?
1
vote
4answers
196 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->str = CComBSTR(L"") ...
1
vote
4answers
596 views
C# substring parse using regular expression (ATL >> NET)?
What is the C# & .NET Regex Pattern that I need to use to get "bar" out of this url?
http://www.foo.com/bar/123/abc
In ATL regular expressions, the pattern would have been
...
1
vote
2answers
473 views
ATL OR C# for windows shell/namespace extenssion?
i have a question,
after allot of hours in googling and reading articles, i understood that namespace extenssion in windows is quite tricky (In C++ at least), now i've also seen its possible to do so ...
1
vote
2answers
331 views
Using STL inside ATL
I need to use tree structure inside a ATL COM server.
I thought of using stl::map<> for this purpose as follows.
BaseMap[k1,NextLevelMap[k2, NextLevelMap[k3, Value]]]
But I need to know, whether ...
1
vote
3answers
1k views
How to create a VB6 collection object with ATL
or a VB6 - compatible - collection object.
We provide hooks into our .net products through a set of API's.
We need to continue to support customers that call our API's from VB6, so we need to ...
1
vote
2answers
470 views
Is it possible to simultaneously debug VB6 and a C++ COM dll?
I have a VB6 dll that is loaded by a VB6 frontend. This VB6 dll calls a C++ ATL dll via its COM interface. So, I can run from code in VB6 and I can debug in C++ also, however I can't seem to step ...
1
vote
2answers
3k views
How to compare two BSTRs or CComBSTRs?
What is the right way to compare two CComBSTRs? I tried to use
bool operator ==(
const CComBSTR& bstrSrc
) const throw( );
However it always return false even two ComBSTRs are the ...
1
vote
3answers
648 views
Using CList in a multithreaded environment
I am using a CList in a multithreaded environment and I keep having problem with the GetHead method. I have one thread that add data to the list, and an other thread who read and remove data from the ...
1
vote
2answers
259 views
Wrapping a 3rd party DLL
I have a 3rd party DLL that needs to be loaded dynamically using LoadLibrary() and which uses the __cdecl calling convention. I need to be able to use the dll from VB6 so I've created a wrapper DLL ...
1
vote
1answer
213 views
How to copy contents of one buffer pointer to another
I have the following pointer:
BSTR *PREVIOUS;
And I want make a new copy to:
BSTR *NEW;
I want to copy the CONTENTS/DATA (that PREVIOUS is pointing) from PREVIOUS to NEW.
I've just tried the ...
1
vote
3answers
673 views
When using CoTaskMemAlloc, should I always call CoTaskMemFree?
I'm writing some COM and ATL code, and for some reason all the code uses CoTaskMemAlloc to allocate memory instead of new or malloc. So I followed along this coding style and I also use ...
1
vote
2answers
473 views
Right single apostrophe vs. apostrophe?
Right single quotation mark (U+2019)
vs.
Apostrophe (U+0027)
What is the difference between these two characters?
I ran into this issue where I use CAtlString to load a string from a ...
1
vote
3answers
1k views
TAB control background in ATL App, XP styles
I have an ATL application with a dialog containing a TAB control. The App uses a common controls manifest.
Under XP with visual styles, the tab control background is a different color than the dialog ...
1
vote
2answers
375 views
Equivalent of OnFinalMessage for MFC windows?
ATL CWindow class has a useful virtual method OnFinalMessage which is called after the last window message for the window is processed - at this point it is safe to destroy or deleted any objects ...
1
vote
2answers
125 views
C# object not destroyed when using COM/ATL interface in C++
Lately I was doing a little project that involved a DLL module (that was created with C#) and that I needed to use in my application (that was written in unmanaged C++) For this to work I was using ...
1
vote
2answers
384 views
What decides whether RegisterTypeLib writes to win32 or win64?
I am working with two ATL-based COM projects.
The both implement DllRegisterServer as just
STDAPI DllRegisterServer(void)
{
// registers object, typelib and all interfaces in typelib
return ...
1
vote
1answer
178 views
Why is my non-owner-drawn listbox having drawing issues after strings are added?
I'm working on my own private Windows desktop application user interface framework based on ATL which is supposed to have an almost identical class list and programming structure as AWT. (I've done ...
1
vote
4answers
1k views
C++ BHO (IE addin) issue
I am creating a BHO using helloworld sample. Building Browser Helper Objects with Visual Studio 2005
the BHO is not getting loaded, and i am not able to hit the breakpoints in SetSite function.
...
1
vote
4answers
880 views
Shut down a ATL application cleanly
I am a complete newbie to C++ so bear with me ;-)
I have developed a console ATL application and want to trap the close?, exit?, terminate? event so that I can close log files and perform a general ...
1
vote
2answers
792 views
Why is my WM_UNICHAR handler never called?
I have an ATL control that I want to be Unicode-aware. I added a message handler for WM_UNICHAR:
MESSAGE_HANDLER( WM_UNICHAR, OnUniChar )
But, for some reason, the OnUniChar handler is never ...
1
vote
2answers
2k views
Does ATL/WTL still require the use of a global _Module variable?
I'm just starting up a new ATL/WTL project and I was wondering if the global _Module variable is still required?
Back a few years when I started working with WTL it was required (at least for ATL ...
1
vote
2answers
85 views
Can not register DLL
I'm working on an ATL project. When I build my solution under a x64 system it doesn't work on x86 architecture and vice versa. (I can't register the dll I generated in a different architecture). Where ...
1
vote
1answer
68 views
How to check if a CComBSTR starts with a certain prefix?
I'm encountering a piece of code where I need to simply do a prefix check on a given CComBSTR object (something like Y.StartsWith("X")). C++ is a bit foreign to me, and my biggest concern is ...
1
vote
2answers
726 views
How to create a C++ COM object (with class factory) using ATL and VS2010 callable from Javascript
I need to create a COM object which is callable from Javascript. I've been told that to do this, you need a COM object which also implements a class factory and it was suggested here that I try ATL. ...
1
vote
2answers
188 views
How to keep reference to captured smart pointer in lambda function?
Suppose the following code:
void SomeClass::SomeMethod()
{
CComPtr<ISomeService> service = GetService();
ExecuteInNewThread([&]()
{
service->AnotherMethod();
});
...
1
vote
2answers
71 views
Do apartments “live” on the server side or on the client side in a out-process environment?
I' having an hard time trying to understand COM apartments in outprocess environment.
Basically I can't understand why the client is required to call CoInitializeEx to register it's own thread in an ...
1
vote
1answer
254 views
atlbase.h and different versions of VC CRT
I have a C++/CLI project created with Visual Studio 2010 that targets .NET Framework 3.5 and PlatformToolset v90. Initially it requests the VC CRT of version 9.0.21022.8, but if I include atlbase.h ...
1
vote
1answer
3k views
What is stdole2.tlb
stdole32.tlb contains all base type definitions, and every lib must import it, if we use MIDL. But when I created ATL DLL project, lib file looks like that
import "oaidl.idl";
import "ocidl.idl";
[
...
1
vote
3answers
382 views
Double pointer function argument and CComPtr
I'm not sure of this way of using CComPtr inside of a function which has an argument expressed as a double pointer:
HRESULT D3DPresentEngine::CreateD3DSample(
IDirect3DSwapChain9 *pSwapChain,
...
1
vote
3answers
2k views
Conversion from CString to char*/TCHAR*
I am well aware of techniques to convert CString to a C-style character. One of them is to use strcpy/_tcscpy, and others include using CStrBuf.
The problem:
char Destination[100];
CStringA Source; ...
1
vote
1answer
417 views
WTL way of forcing resources to load from a dll in a non mfc app? (we are using WTL/ATL, not straight win32)
I posted this question previously and now have the localized strings loaded (the ones we get with LoadString()) but I also need to load all the other resources from the satellite DLL.
MFC has the ...
1
vote
4answers
832 views
How can I convert a JavaScript array() to an ATL/COM array?
How can I convert a JavaScript array() to an ATL/COM array without using VBArray?
What I want to convert is a new Array() to a SAFEARRAY.
1
vote
4answers
1k views
Providing an IDispatch implementation for a connection point client
I've written a simple COM DLL inproc server with a single simple COM object. The COM object implements a connection point.
I know how to create an ATL client that derives from IDispEventImpl, and ...
1
vote
1answer
627 views
How to get complete HTML body using browser helper object (BHO) in case of DHTML/AJAX page?
I'm writing a BHO that analyze the HTML taken from the 'onDocumentComplete' event of 'DWebBrowserEvents2'. Currently it works fine, unless I have a DHTML/AJAX page, where HTML handle is delivered too ...
1
vote
2answers
583 views
Convert void* representation of a dword to wstring
I am having dumb monday so my apologies for posting such a newbie-like question.
I am using CRegKey.QueryValue to return a dword value from the registry. QueryValue writes the value into void* pData ...
1
vote
1answer
686 views
CComPtr CoCreateInstance returns 0x80070582 (Class already exists.)
I have a StartComObjects function called when the user presses the Login button and a StopComObjects function called when the user presses the Cancel button. The StartComObjects function uses ...
1
vote
3answers
2k views
How do I create interface methods using .tlb types in VS C++?
Background:
The .TLB file contains interfaces written in language 'X'. I don't have .h, .idl, .tlh, or any other header files - just the .TLB file. Language 'X' does not export compatible .h, .idl, ...
1
vote
4answers
3k views
Creating an ATL COM object that implements a specific interface
I need to implement a simple ATL COM object that implements a specific interface for which I have been given both a .tlb file and a .idl file. The interface is very simple and only consists of a ...
1
vote
2answers
836 views
How does Install Shield “COM Extract at Build” work?
Our product contains a VC++ ATL in-proc COM server with two COM-exposed classes - ClassA and ClassB. This COM server is added into an Install Shield 2008 installer package and "COM Extract at Build" ...
1
vote
1answer
890 views
SetThreadLocale and UTF8
So I want to use SetThreadLocale to set a threads codepage to UTF8. Up to now, I've been using the second parameter of atl string conversion macros like "CT2A(szBUF, CP_UTF8)" to do this. But I want ...
1
vote
2answers
705 views
Returning an object as a property in ATL
I am creating a COM object using Visual Studio 2008 and ATL. Adding simple properties and methods is easy enough but now I want to do something more complicated. I want to give access to a C++ ...
1
vote
4answers
1k views
Atl service not registering
I'm trying to register an atl service using
ExeName.exe /service
as described here: http://msdn.microsoft.com/en-us/library/74y2334x(VS.80).aspx
After doing so though, it's not appearing in my ...
1
vote
3answers
1k views
Under what circumstances does Internet Explorer fail to properly unload an ActiveX control?
I'm running into a perplexing problem with an ActiveX control I'm writing - sometimes, Internet Explorer appears to fail to properly unload the control on process shutdown. This results in the control ...
1
vote
1answer
78 views
_com_ptr_t::CreateInstance success without regsvr32
I'm studying a program that create the COM object using _com_ptr_t::CreateInstance.
What I'm not getting is that, the code is working without having to regsvr32 the referenced COM dll.
The only ...


