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.

learn more… | top users | synonyms

0
votes
1answer
34 views

Convert double[,] to Variant*

In my application Im trying to call a function of ATL COM class from my WPF application. ATL COM class's fucntion's parameters are like this. [id(5)] HRESULT GetFormationZPoints([in] BSTR sLyrName, ...
-1
votes
2answers
20 views

substitute of COM/ATL in C++

Is microsoft Component Object Model really outdated ? I am working in a project where some c++ code is writtern in COM/ATL and rest are in Qt. In order to fix defects and use the legacy libraries, I ...
0
votes
0answers
14 views

Unit Testing ActiveX Control (C++)

I'm having trouble finding information on this through Google, so figured I'd ask here. I have an ActiveX control developed in C++ with ATL. I'm using Visual Studio 2012. I want to add unit tests ...
-1
votes
1answer
61 views

How to properly convert and use native COM types in a ATL-based server?

I have to write a COM server DLL (using ATL) that is called by the plugin interface of an old (closed-source) VB6 application and would like to avoid possible leaks (of course)! The interface ...
0
votes
1answer
23 views

ATL Conversion Macro Doesn't like being in it's own function

I am using the ATL conversion macro A2T to convert between std::string and const TCHAR*. I then feed the TCHAR* to an additional function for parsing of a file. When I do the following, it works: ...
0
votes
2answers
40 views

Does IDispatch::Invoke(DISPATCH_PROPERTYGET) increment the reference count on the IDispatch interface returned?

I'm currently working on an COM server (using ATL) to be used by a closed source VB application. So far everything is working but I want to ensure that no leaks are there... so my question is: Do I ...
0
votes
0answers
29 views

Windows shell extension tutorial won't add CLSID to registry

Context & What I've Done I am attempting to learn how to write shell extensions for Windows, however the process isn't very well documented and information for beginners is scarce. From what ...
1
vote
2answers
150 views
+200

Right way to pass a NULL Pointer to a out of process COM Method in an ATL Project

What is the right way to pass a NULL Pointer to a out of process COM Method in an ATL Project? I have created a COM Server hosted through a COM Surrogate If it matters I am using VS2012 running on ...
0
votes
0answers
60 views

Convert simple VB.NET class library to C++

I'm currently using an old VB6 application (just a guess as I don't have the source code) which can be extended using VB.NET. Extensions consist of a class with one public function which is declared ...
1
vote
1answer
23 views

Can COM be made to support overloaded methods?

I want to create a COM component which has two interfaces one derived from another which I know is possible in COM. But I wanted to know whether using one interface derived from each other can somehow ...
2
votes
1answer
24 views

Atl CDialogImpl not showing on DoModal if called from static library

I wrote a super simple ATL dialog inside a project. Even when I noted that every example on the web implemented the CDialogImpl class inline (that is, the class definition and it's implmentation where ...
-1
votes
0answers
16 views

Does the implementation of extensions change across the different IE versions

I want to create IE extension. I want to know that for different version of IE browser (IE7 and above), implementation of IE extension will be different or Same extension will work for all version of ...
0
votes
0answers
23 views

Windows explorer namespace extension windows 7 and “view” style option

I'm working on a NSE. I choosed the IShellFolder/IShellView way to populate my own tree view as described by zengxi'serie (starting ...
0
votes
1answer
67 views

Properly closing window created on a separate thread using ATL

I have a multithreaded application and on certain threads, I'm creating windows using ATL's CWindowImpl<>. I have a static method that I'm using as the thread procedure. I need to create a ...
0
votes
1answer
26 views

HRESULT:0x80040154 for registered COM object

I have some probles with call COM object. szProgID = Imctrl.Section HRESULT hr = CLSIDFromProgID(szProgID, &clsid); After execution, hr = S_OK, clsid = "CLSID_Section Class". But when i try ...
-1
votes
0answers
54 views

Should I learn com and atl? [closed]

In my project we use very less COM and ATL. I have absolutely no idea about these microsoft c++ libraries and I struggle a lot during small defect fixing. I mostly work in boost and qt. Should I ...
0
votes
1answer
61 views

Advantages & Disadvantages of writing IE addons in .NET

Since i am a .NET developer, I am planning to write a IE addon in .NET. Does anyone here have experience with/in developing IE extensions in .NET that can share their knowledge? Specifically i like ...
0
votes
0answers
39 views

IE Browser extension method for showing a new addon ICON on browser

I have to place a icon/button on IE browser and on click of it i have to perform some operation.Which option do i need to use. Shortcut menu extensions Toolbars Explorer Bars Browser Helper Objects ...
0
votes
1answer
41 views

What is IObjectWithSite Interface in IE addon development

I have a task to create IE addon. When i gathered some knowledge about it, i found that it needs interface IObjectWithSite. I went thought many sites but could not understand its actual need and ...
0
votes
2answers
70 views

ATL COM is the only way to develop IE7 or above addons/extensions?

I went through various resources available on internet and found that ATL COM is used to develop addons for IE9 or above. But as per my knowledge this library is very old library. There must be ...
0
votes
3answers
66 views

convert BSTR to LPCWSTR

Here is my need BSTR l_strArgs; LPCWSTR sth; //---- //--- OutputDebugStringW(sth); How to convert BSTR to LPCWSTR ? Is there any header only library that coverts any string type(microsoft) to ...
0
votes
0answers
35 views

ActiveX/IDL – how to export member functions from “ATL Simple Object” in OCX control?

I have an ActiveX control in MSVC++10 which compiles into a .ocx. I have added another "ATL Simple Object" to this control, from which I want to export some functions. If this library is called ...
0
votes
3answers
70 views

Why would QueryInterface() fail when the interface is surely implemented and has built-in marshaller in Windows?

I have the following setup. There's a COM server that is installed into COM+ (to run in a separate process) and has this interface definition: [object, uuid("InterfaceIdHere"), nonextensible, ...
0
votes
2answers
71 views

How to retrieve object pointer from ATL collection of objects?

I have a collection of objects that is defined as: typedef IField ItemInterface; typedef CComObject<CField>* ItemClassPtr; typedef CAdapt< CComPtr<ItemInterface> ...
1
vote
2answers
82 views

ATL COM: Access Event Methods From Other Thread

I'm implementing a COM interface to an existing VS2010 C++ MFC-application. Most parts of the COM interface interaction works great, but I am confused of how to trigger COM events from another thread ...
0
votes
1answer
71 views

In ICollectionOnSTLImpl implementation, can't access m_T or item object's members

I'm trying to implement a collections of objects via VC6 that can be accessed by a VB6 programs. I haven't been able to make it come together. I have defined _CopyVariantFromAdaptItf and ...
0
votes
1answer
52 views

Unresolved external symbol _IID / _CLSID

I created a default ATL project with MSVC 2010 with a simple default ATL dialog. Then I added the second project into solution, named MyControls, where I created ATL DHTML Control with a help of ...
5
votes
2answers
82 views

How to return positive error code from ATL to VB6?

I have checked out the answer at: How can I return both an error string and error code to VB6 from an ATL activex control? I am able to return custom negative error codes, ie with the severity bit ...
0
votes
1answer
26 views

How to correctly access ATL control from ATL Dialog?

I have an MSVC 2010 solution that contains 2 projects: ATL DLL project, that contains DHTML control (named DHTMLControl, which is pretty much built by wizard). I think I could have placed this ...
0
votes
1answer
42 views

What is the best way to keep a ATL service running

I have created a ATL service and while testing I simply kept it running by leaving a while loop that ran forever (see code below) HRESULT Run(_In_ int nShowCmd = SW_HIDE) { m_running = true; ...
0
votes
2answers
72 views

Why is this COM code leaking?

I'm maintaining an application which uses Windows Explorer overlay icons. Occasionally some operations require me to forcibly refresh explorers view for a particular folder. I do so using the ...
0
votes
1answer
50 views

What is the best way to check if a given userprofile is active or deleted in C++?

I have a list of usernames. In C++ which way would it be better to check if the profile associated with the username exists or deleted in the local machine? I came across ATL CAccessToken class ...
0
votes
1answer
39 views

Can't use a simple ActiveX. Failed to create 'AxHost'

I tried to create a simple ATL Object(ActiveX Object) and to use it in C#. I could compile and register it but when I wanted to use it in a C# application I got this error. How can I fix this ...
1
vote
1answer
53 views

How can I use COM ATL project in Linux?

I've got a small C++ library which is made as ATL Project in Visual Studio. I want to make it crossplatfrom. It will be used in Windows and Linux. It will be included in my project, which uses Qt 4.x. ...
0
votes
2answers
79 views

global scope enum and namespace conflict

I have an ATL COM service and in the .IDL file, I've declared an enum like so: In Gourmet.idl typedef enum Food { Chocolate = 0, Doughnut, HotDog } Food; A header file is automatically ...
0
votes
1answer
97 views

Dynamic-like alternative for C++ and COM using IDispatch

I was showing a coworker how easily a COM object could be created and used in C++ using the Microsoft ATL library. In particular, I wanted to use demonstrate IDispatch to show how it can be used to ...
0
votes
1answer
130 views

How to call an ActiveX function with char * parameter in C#

I have this c++ function : unsigned int ReadUserMemory( unsigned char *lpBuffer, unsigned int iAddress, unsigned int nNumberOfByte ); Which reads nNumberOfByte bytes from iAddress of a memory and ...
0
votes
1answer
80 views

What is the difference between COM dll server and COM exe server?

I would like to know how we can decide that we have to use COM dll server or COM exe server.
0
votes
1answer
109 views

Retrieving an array through CComPtr<IDispatch> Invoke

I'm invoking a Javascript function from C++ using CComPtr Invoke(). As long as I return a single element from the Javascript function, I can get extract it from the C++ side using the ComVariant ...
0
votes
1answer
99 views

Winapi radio button bevahivour

I have created a custom image drawing checkbox in WTL and I am now trying to create a custom image drawn radio button, how does the radio button work, when a user cliks one button to select it how ...
0
votes
1answer
48 views

ATL errors compiling 64-bit COM excel addin

I have a C++ ATL COM adding that implements some utility functions that refer to the Excel API: void DoSomething(CComPtr<Excel::Range> &masterCell) { // ... ...
2
votes
1answer
56 views

MSI - Conditionally register DLL

I'm working on a .NET profiler (my project output is a DLL). I have built 2 DLLs (written in c++) : one will be loaded by x86 .NET processes and the other by x64 ones. I want to generate a single MSI ...
0
votes
0answers
62 views

Export XMI file to an SQL code

I've used ATL to generate an XMI file corresponding to an UML Class diagram by following this tutorial ...
0
votes
2answers
125 views

How to register a 64-bit COM dll on 64-bit Windows 7?

I'm trying to register an x64 COM server dll for use in x64 office on x64 windows 7. I have followed the instructions here but I cannot register the dll. When I attempt to I get the following error: ...
0
votes
0answers
62 views

Changes in registry keys after adding a new interface and a componet to out-of-proc COM server

I am going through a code that has a exe having a COM server(a COM class implemented in ATL). It has a .idl file having all interfaces defined. Now after registration of the COM server, i went through ...
1
vote
3answers
247 views

UML class diagram metamodel

Where can I find a simplified class diagram metamodel ? It's for a ATL ATLAS Transformation Language project, I need to transform a entity class diagram to SQL database. thank you .
4
votes
3answers
82 views

Connecting to a COM interface in an aspx code-behind running on IIS?

I've created a Windows service (an exe based on the Visual Studio ATL wizard) which exposes a COM interface. No problems running as an in-proc server or a Windows service. I need a Windows service ...
0
votes
2answers
62 views

create simple atl object with connection points Fire methods not being generated

I created ATL dll project in visual studio 2008 and it generated the following class... template <class T> class CProxy_IAutomateEvents : public IConnectionPointImpl<T, &__uuidof( ...
0
votes
0answers
82 views

ActiveX controls are not rendered correctly in Excel when scroll up/down

Background I want to create a control that contains an ActiveX control and another controls to be used in Excel. So I decided to use ATL CComCompositeControl. I use Visual Studio wizard to create ...
2
votes
1answer
159 views

How to add Classes that use MFC to an ATL project?

I'm writing a .NET profiler (a DLL) and I'm using ATL. I'd like to add some classes that use MFC to my project but I got many errors however those classes work fine with an MFC project. I tried to ...

1 2 3 4 5 15