c++ Programming Glossary: atl
Instantiate class from name? http://stackoverflow.com/questions/1096700/instantiate-class-from-name clever macros to enable it to be done at compile time. ATL uses the Registry Pattern for CoClasses which can be created..
Best method for storing this pointer for use in WndProc http://stackoverflow.com/questions/117792/best-method-for-storing-this-pointer-for-use-in-wndproc wondering how that works and then got to thinking about ATL etc. Edit What is the earliest place I can validly use the HWND.. that's not the first message to be sent to a window. Edit ATL uses a thunk for accessing the this pointer. MFC uses a hashtable..
Creating, opening and printing a word file from C++ http://stackoverflow.com/questions/145573/creating-opening-and-printing-a-word-file-from-c
C++: What's the simplest way to read and write BMP files using C++ on Windows? http://stackoverflow.com/questions/199403/c-whats-the-simplest-way-to-read-and-write-bmp-files-using-c-on-windows
C++ win32 GUI programming, the shortest path? [closed] http://stackoverflow.com/questions/212559/c-win32-gui-programming-the-shortest-path you know of a good means of learning C win32 not .Net MFC ATL Wx Qt.. GUI programming A book a tutorial an existing project..
Is .NET “all COM underneath”? http://stackoverflow.com/questions/2280639/is-net-all-com-underneath C assemblies that have absolutely nothing to do with COM ATL ActiveX Here is the PDF transcript for the podcast in question...
How can I get the SID of the current Windows account? http://stackoverflow.com/questions/251248/how-can-i-get-the-sid-of-the-current-windows-account use OpenThreadToken or OpenProcessToken . If you prefer ATL it has the CAccessToken class which has all sorts of interesting..
What is the use of “delete this”? http://stackoverflow.com/questions/447379/what-is-the-use-of-delete-this if 0 _refCount delete this return 0 return _refCount ATL COM objects are a prime example of this pattern. 1 Yes I realize..
How should I use FormatMessage() properly in C++? http://stackoverflow.com/questions/455434/how-should-i-use-formatmessage-properly-in-c should I use FormatMessage properly in C Without MFC ATL How can I use FormatMessage to get the error text for a HRESULT..
How do I build an import library (.lib) AND a DLL in Visual C++? http://stackoverflow.com/questions/584041/how-do-i-build-an-import-library-lib-and-a-dll-in-visual-c next page choose 'DLL'. You can also make an MFC DLL or ATL DLL from those library choices if you want to go that route..
App does not run with VS 2008 SP1 DLLs, previous version works with RTM versions http://stackoverflow.com/questions/59635/app-does-not-run-with-vs-2008-sp1-dlls-previous-version-works-with-rtm-versions will bind to the latest version of all VC libs CRT MFC ATL OpenMP . Then check what the embedded manifest says. Download..
Create WCF service for unmanaged C++ clients http://stackoverflow.com/questions/686452/create-wcf-service-for-unmanaged-c-clients so far WWSAPI not good will not work on Win 2000 clients. ATL Server used following guide as a reference. I followed the steps..
How to add WTL and ATL to visual studio c++ express 2008 http://stackoverflow.com/questions/71659/how-to-add-wtl-and-atl-to-visual-studio-c-express-2008 to add WTL and ATL to visual studio c express 2008 I start using the visual studio.. 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 c.. 2008 at home but there is no ATL in it. How can I add ATL to visual studio c express 2008 c visual studio atl wtl share..
C++, C# and JavaScript on WinRT [closed] http://stackoverflow.com/questions/7466303/c-c-sharp-and-javascript-on-winrt C standard library available to you as well as a subset of ATL. Can write your own WinRT components which can then be used..
Convert CString to const char* http://stackoverflow.com/questions/859304/convert-cstring-to-const-char convert from ASCII Unicode CA2T and you can use these in ATL WTL apps as long as you have VS2003 or greater. See the MSDN..
Why would QueryInterface() fail when the interface is surely implemented and has built-in marshaller in Windows? http://stackoverflow.com/questions/16590106/why-would-queryinterface-fail-when-the-interface-is-surely-implemented-and-has not work and how do I find the reason c com marshalling atl com share improve this question One of the possible scenarios..
basic playback with programmatically created windows media player http://stackoverflow.com/questions/1935964/basic-playback-with-programmatically-created-windows-media-player problem see the question for that . c windows com atl windows media player share improve this question WMP supports..
Enumerate COM object (IDispatch) methods using ATL? http://stackoverflow.com/questions/2112302/enumerate-com-object-idispatch-methods-using-atl using smart COM pointers CComPtr . Is this possible c com atl share improve this question You can't enumerate all the..
Creating an ATL COM object that implements a specific interface http://stackoverflow.com/questions/2190993/creating-an-atl-com-object-that-implements-a-specific-interface new objects IDL somewhere Any pointers are welcome. c com atl share improve this question It's much more automatic than..
How can I convert a JavaScript array() to an ATL/COM array? http://stackoverflow.com/questions/5014711/how-can-i-convert-a-javascript-array-to-an-atl-com-array is a new Array to a SAFEARRAY. javascript c arrays atl share improve this question Here's a code to do just that..
Developing Internet Explorer Extensions? http://stackoverflow.com/questions/5643819/developing-internet-explorer-extensions thereof. Any help resources you could offer would be greatly appreciated. Specifically I would like to start with how to.. to build one in C I can do that. c# c internet explorer atl browser extension share improve this question Man... this..
Use CString in console app when using VS Express http://stackoverflow.com/questions/5760186/use-cstring-in-console-app-when-using-vs-express uses CString. When I try to include the appropriate header atlstr.h as far as I know I get the famous error Cannot open source.. it seems that in general it should be possible but the atlstr.h is not available to Express users. Questions 1 Is that.. ado msado15.dll rename EOF adoEOF no_namespace #include atlstr.h class CADOConnection private _ConnectionPtr pConnection..
How to embed Windows Form in unmanaged ATL GUI? http://stackoverflow.com/questions/642082/how-to-embed-windows-form-in-unmanaged-atl-gui Is this possible and if so how do I do it c winforms atl share improve this question I am not sure about ATL but..
How to add WTL and ATL to visual studio c++ express 2008 http://stackoverflow.com/questions/71659/how-to-add-wtl-and-atl-to-visual-studio-c-express-2008 I add ATL to visual studio c express 2008 c visual studio atl wtl share improve this question ATL 7.1 is now part of the..
How do I decide whether to use ATL, MFC, Win32 or CLR for a new C++ project? http://stackoverflow.com/questions/821676/how-do-i-decide-whether-to-use-atl-mfc-win32-or-clr-for-a-new-c-project only best option which should I choose c winapi mfc clr atl share improve this question It depends on your needs. Using..
|