Hi! I built a COM dll module for an application of mine, using ATL70.DLL On certain versions of Windows XP only ATL71 dll is installed, therefore my dll would...
Hi, you have to deploy this dll with your application. Look in MSDN should be topic about it. Best Regards, Serhiy Serbin ... From: wtl@yahoogroups.com...
Serhiy Serbin
srs@...
Sep 1, 2005 8:59 am
12432
... If you are using Visual Studio 7 or higher (i.e. Visual Studio 2002 or higher), then you can use the CString class that is shared by ATL and MFC. After...
Hi, supreme gurus. I find Boost.Range interesting. I find also that Boost.StringAlgorithm works with ATL/WTL CString through Range interfaces. (Boost.Range...
... of ... LPARAM ... You need to assign the control's window handle to the instance of CAnimateCtrl. Below assumes the id of the control is IDC_ANIMATE1: ...
Please call c_oProcessingAnim.Create(...) function before you call SendMessage function. ... ·¢¼þÈË: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com]...
I must be missing something here :) CComPtr<IWMEncStatistics> Enc_Stats; _Enc_Encoder->get_Statistics(&Enc_Stats); /// yeah this works This next line...
... Why are you surprised? The line that fails calls QueryInterface on IWMEncStatistics object. Well, it does not support IWMEncOutputStats. The code that...
Probably the strangest thing is happening to my skinned combo box: I simply redrawing the border around a combo-box, and also redrawing the drop-down button....
I ahve a problem regarding GetUpdateUIMap . error C2501: 'GetUpdateUIMap' : missing storage-class or type specifiers warning C4183: 'GetUpdateUIMap': member...
I think you get this behaviour because edit box inside of combobox is another control. And probably you set style WS_CLIPCHILDREN. So after your draw edit can ...
More information? Sample code? My intuition suggests that you are not including a header file you should be. Philip ... [Non-text portions of this message have...
... specifiers ... like a ctor, but name does not match enclosing class ... Your class must derive from CUpdateUI or CDynamicUpdateUI before you can have a UI...
I want to hide my window if a feature is missing and the user responds with "no" I tried the following: MESSAGE_HANDLER(WM_SHOWWINDOW, OnShow) LRESULT...
... responds ... LPARAM ... ()) ... The message is returning AFTER your call to ShowWindow(SW_HIDE), so the dialog is being shown after it is hidden. I'd try...
Thank you it was solved the next minute i posted the message . It was corrected when i included #include <atlmisc.h > that was it. I have another problem. I am...
... items. ... though it is showing no errors, it is not responding( all the IDs are correct though) ... You must write your own command handler for...
well I still have problem with the menus.I am able to call them proprly but when i click on the Item it is not getting activated teh ID is correct. i cant...
that new class only generated for whole dialog. you need to declare one member variable .. after that u shuld give one command handlers( like dbl cilck or...
Do you set flag TPM_RETURNCMD in TrackPopupMenu[Ex] ? ... ______________________________________________________ Click here to donate to the Hurricane Katrina...
In my ATL code I am try to calculate Elapsed Time of file search of my dialog box . I want to use ColeDateTimeSpan , CTimeSpan and COleDateTimeSpan . For use...
... These classes were only added to ATL after VS 6, so (unsurprisingly) the header files aren't present in your VS6 installation. The easiest way to calculate...
Chris Sells has written a nice date class called CComDATE and a companion called CComSpan. These are available at http://www.sellsbrothers.com/tools along with...
Hi there , I'm wondering if somebody know what algorithm is using for color blending in VS2005( for instance how is obtained the color of focus rectangle (...
... If you don't want to depend on a particular version of ATL.dll you can statically link to ATL. This can be done by setting "Use of ATL" to "Static Link to...