Tagged Questions

The ActiveX Template Library is a set of C++ template classes that is used to create COM objects.

learn more… | top users | synonyms

44
votes
7answers
4k views

Developing Internet Explorer Extensions?

So..after developing a few Firefox & Chrome extensions, I've decided to try and expand my skillset by developing an Internet Explorer extension in C#. I went into it thinking it wouldn't be too ...
16
votes
1answer
372 views

Hosting Silverlight in C++

I'm a bit over my head here and would like some advice on how to go about. Basicly what I want to do is to be able to render and control silverlight inside my C++ application. I would like something ...
13
votes
6answers
6k views

How do I decide whether to use ATL, MFC, Win32 or CLR for a new C++ project?

I'm just starting my first C++ project. I'm using Visual Studio 2008. It's a single-form Windows application that accesses a couple of databases and initiates a WebSphere MQ transaction. I basically ...
9
votes
3answers
328 views

What's the fundamental difference between MFC and ATL?

tl;dr: Assuming I am only using them for "normal" GUI programs (no COM, no ActiveX, nothing fancy), what is the fundamental difference I will see between ATL and MFC, to help me figure out which one ...
9
votes
5answers
12k views

How to add WTL and ATL to visual studio c++ express 2008

I start using the visual studio c++ express 2008 at home but there is no ATL in it. How can I add ATL to visual studio c++ express 2008?
8
votes
4answers
2k views

CComVariant vs. _variant_t, CComBSTR vs. _bstr_t

I am using ATL (VS2008, so ATL9 IIRC) to create COM objects and have been using the CComVariant class (defined in atlcomcli.h) to manage VARIANT types. However, there is also another VARIANT wrapper ...
5
votes
1answer
144 views

False positive Error 503 for call to template function

I have some code that PC-Lint is giving me Error 503: Boolean argument to relational on. It is a call to a template function which is defined like this: template <typename ITypeToUse> void ...
5
votes
1answer
443 views

How do I convert an ATL/MFC CString to a QString?

Given the encoding of the project is probably Unicode (but not for sure) what is the best way of converting ATL::CString to QString? What I have thought of is this: CString c(_T("SOME_TEXT")); ...
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
4answers
1k views

How do I add MFC ActiveX control to an existing activex project

In visual studio 2008 I can create an MFC activex project and it presents a wizard to create a single activex control. I now want to create new controls within this project. I can't find any way to ...
5
votes
3answers
2k views

Using MFC in Windows service?

I'm starting to develop a Windows service. I want to use some classes from my own, that has little dependencies to some MFC classes like CString, CSocket, CArchive, CMemFile and CObject. MSDN says you ...
4
votes
3answers
168 views

What is the use of CComPtr over CComQIPtr in COM?

Can any one explain, What is the use of CComPtr over CComQIPtr in COM? CComPtr<ISampleInterface> Sample1; CComQIPtr<ISampleInterface> Sample2;
4
votes
1answer
128 views

Using an array of derived objects as an array of base objects when the sizes are the same (CComVariant/VARIANT)

I'm using code that treats an array of derived objects as an array of base objects. The size of both objects is the same. I'm wondering: Is this safe in practice, bearing in mind that the code will ...
4
votes
2answers
695 views

Problem catching OnClick event using HTMLDocumentEvents2 in a BHO

I am running a BHO and i am trying to catch OnClick events using HTMLDocumentEvents2 however, the events never seem to reach the handler this is what i am doing: class ATL_NO_VTABLE CBlastBhoBHO : ...
4
votes
1answer
568 views

Advice when using COM Object/CComPtr and the STL

I am doing some COM related things with directshow such as: typedef CComPtr<IBaseFilter> AutoIBaseFilterPtr; map<CString, AutoIBaseFilterPtr> _filterMap; To store a list of directShow ...
4
votes
3answers
3k views

atlbase.h not found when using Visual C++ Express 2010

So I tried moving my project to Visual C++ Express 2010 on Windows 7 from a previous version on Windows XP. I got all sorts of errors where atlbase.h was not found. This isn't so much a question but ...
4
votes
3answers
1k views

Marshalling BSTRs from C++ to C# with COM interop

I have an out-of-process COM server written in C++, which is called by some C# client code. A method on one of the server's interfaces returns a large BSTR to the client, and I suspect that this is ...
3
votes
1answer
110 views

How to write a shell extension in C++?

This seemed like a common question but after doing some searching, I wasn't really able to find my answers. There is an article on this here: http://www.codeproject.com/KB/shell/shellextguide1.aspx ...
3
votes
1answer
46 views

How to show browse button in custom OleDB driver

I am writing a custom OleDB provider using ATL. It connects to a file-type database. The driver functionality is complete, except for one omission. In the Data Link properties dialog for the driver, ...
3
votes
2answers
119 views

Create A COM object inside another COM object

I have the following interface. The interface returns ISystemCmds interface as part of GetSystemCommandInterface method. We are using ATL for creating the COM. interface IDevice : IDispatch{ ...
3
votes
1answer
290 views

Why is avl tree faster for searching than red black tree?

I have read it in a couple of places that avl tree search faster, but not able to understand. As I understand : max height of red-black tree = 2*log(N+1) height of AVL tree = 1.44*logo(N+1) Is it ...
3
votes
1answer
436 views

Copying a bitmap from another HBITMAP

I'm trying to write a class to wrap bitmap functionality in my program. One useful feature would be to copy a bitmap from another bitmap handle. I'm a bit stuck: void operator=( MyBitmapType ...
3
votes
1answer
408 views

Does COM activation of LocalServer32 EXE from the same user account share an existing process or not?

I have a COM server LocalServer32 EXE started when a client application calls c_com_ptr::CreateInstance (using ATL wrappers.) On Windows 7, when a second client application running under the same ...
3
votes
1answer
119 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
4answers
371 views

DCOM: How to close connection in server on client crash?

I have a rather old project: DCOM client and server, both in C++\ATL, only Windows platform. Everything works fine: local and remote clients connect to server and work simultaneously without any ...
3
votes
2answers
326 views

Does placement new call the constructor if the passed pointer is null?

I tried to converted a vc7.1 project to vs2010 which I got from codeproject.(And here's the link h tt ...
3
votes
1answer
799 views

What are oaidl.idl and ocidl.idl for?

A default ATL Simple Object has the following at the top of its IDL file: import "oaidl.idl"; import "ocidl.idl"; What are these files for, and how do I know when I need to import them? Is there ...
3
votes
1answer
2k views

How to best convert CString to BSTR to pass it as an “in” parameter into a COM method?

I need to convert a CString instance into a properly allocated BSTR and pass that BSTR into a COM method. To have code that compiles and works indentically for both ANSI and Unicode I use ...
3
votes
2answers
885 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 implementation uses ...
3
votes
2answers
1k 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 leak when we are not ...
3
votes
2answers
459 views

Which VC++ runtime version do I choose - static or dynamic?

I'm developing a 64-bit in-proc VC++ ATL COM server that basically just redirects all calls to an out-proc COM server. So my COM server basically does nothing. Initially it used the C++ runtime in a ...
3
votes
2answers
825 views

What's the point of _MERGE_PROXYSTUB?

I have generated an ATL COM object using VS2008 and the code contains references to a definition called _MERGE_PROXYSTUB (because I chose the 'Merge proxy/stub' option when I initially ran the ...
3
votes
4answers
310 views

What is Microsoft using as the data type for Unicode Strings?

I am in the process of learning C++ and came across an article on the MSDN here: http://msdn.microsoft.com/en-us/magazine/dd861344.aspx In the first code example the one line of code which my ...
3
votes
2answers
254 views

Delphi and Microsoft ATL security issue

My impression is that standard Delphi uses the Win32 API. Recently Microsoft has been communicating a problem regarding ATL that requires application developers to rebuild ATL-using applications ...
3
votes
2answers
378 views

Create a new connection point in VC++ 6?

I have an ATL/COM project, in VC++ 6. I want an existing class, that has never before been defined to raise events, to raise events. To do this, the class will have to implement a "connection ...
3
votes
8answers
923 views

COM MFC ATL worth studying?

Is it worth studying COM MFC ATL WTL now?
3
votes
1answer
886 views

Getting Outlook::_MailItem from Outlook::Attachment (embedded email)

I'm writing an Outlook Addin using VC/ATL. This particular addin takes selected email messages and writes them to disk. It also writes all of the associated attachments to disk. We then read ...
3
votes
5answers
504 views

Why would I get a GPF in DLLMain when run as a restricted user?

Why is this code crashing when run as a restricted user, but not when run as an admin of the machine? extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD ...
3
votes
2answers
1k views

_bstr_t to UTF-8 possible?

I have a _bstr_t string which contains Japanese text. I want to convert this string to a UTF-8 string which is defined as a char *. Can I convert the _bstr_t string to char * (UTF-8) string without ...
2
votes
3answers
64 views

What's the technical name for Objects used in javascript/vb “new ActiveXObject()”?

There are objects which you can create in Windows' javascript/vb shell like this: x = new ActiveXObject("name"); x.aMethod(); What is the technical name for them (ATL? ActiveX? ActiveX control? ...
2
votes
5answers
217 views

Shell Namespace Extension. C#. C++, MFC, ATL ¿what to use?

We need to create a Shell Namespace Extension. I left windows programming in 2005, that time I had to create simple shell extensions, but built very complex COM servers (in-process and out-of-process) ...
2
votes
2answers
125 views

Error: “bad variable type” in CComVariant::Copy when iterating through CComSafeArray

CComSafeArray<VARIANT> fields; hr = _tab_file->get_Fields(fields.GetSafeArrayPtr()); for ( LONG i = fields.GetLowerBound(), ie = fields.GetUpperBound(); i <= ie; ++i) { CComVariant ...
2
votes
2answers
167 views

What is the difference between ATL and WTL?

I know "WTL builds on ATL", but what does that mean in practical terms? Is ATL a subset of WTL in terms of features? (i.e. are ALL features in ATL also present in WTL?) I notice Wikipedia states ...
2
votes
0answers
71 views

How to access COM objects from different apartment models?

I have a multi-threaded C++Builder GUI app, which communicates with a third-party app via COM. I need to call methods of the COM object from several threads, and I'm protecting access with a mutex. ...
2
votes
3answers
175 views

How to suppress “There are still active COM objects in this application” error when closing application?

I've written a few ATL COM objects that are used for drag-and-drop within my C++ Builder application. Due to reasons beyond my control, my application still has active COM objects when the user ...
2
votes
1answer
65 views

Kill A ATL COM Process Under SYSTEM Account?

I have a .NET Winddows service which runs under the Local System account. This service then runs a COM component that was written in ATL on Visual Studio 6 using COM Interop. This COM component then ...
2
votes
2answers
195 views

Should I use CString, basic_string<TCHAR>, or something else with ATL/WTL?

I've only learned a little bit of ATL in the last couple of days (after realizing how much pain pure Win32 is) and also learned about WTL and MFC, and from what I see, there are quite a few different ...
2
votes
1answer
315 views

Detecting memory leaks on Ref-counted COM objects (Addref without Release)

I'm writing a Direct3D 10 application and want to make sure I don't have COM objects leaking. Yes, I am wrapping the interfaces with CComPtr, but I'd like a leak check anyway for the same reason I ...
2
votes
3answers
255 views

Compile ATL project with only Windows SDK 7.1

I have a project which needs to be compiled. It is compiled on our build server which I have only installed Windows SDK 7.1 on. I would like to not have to install an actual Visual Studio on this ...
2
votes
1answer
347 views

Implement COM interface C++ / VC++ 6.0 / MFC

Entry level programmer here trying to implement a COM interface. I am working on a program that interfaces with the Aloha point of sale system. Aloha uses COM to work with external programs. I am ...

1 2 3 4 5 10