Search the web
Sign In
New User? Sign Up
wtl · WTL support list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 13865 - 13894 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13865
I just found out about those functions, and not sure about them. Does it mean I can create a normal C++ class, and then create a dispatch object for calling...
gilad_no
Offline Send Email
Sep 1, 2006
5:15 pm
13866
... No. With CreateStdDispatch you can take a COM object implementing an automation compatible interface, and create an IDispatch wrapper around it (e.g. so it...
Igor Tandetnik
itandetnik
Offline Send Email
Sep 1, 2006
7:06 pm
13867
i wanna create a imagelist which contains multi rows so i could modify easily later(evey icon consists of several states) here is what i wanna organize my...
succeeded918
Offline Send Email
Sep 5, 2006
5:45 am
13868
Hi all, A very silly question from a newbie. I have a CTreeViewCtrl derived view class, how to be notified of item selection changes? I looked at codeproject...
Andrea De Nardis
beppe_genco
Offline Send Email
Sep 5, 2006
2:41 pm
13869
Hi, #include <atlcrack.h> And don't forget to change the map of the parent class to send reflections. Best Regards, Serhiy Serbin ... From: wtl@yahoogroups.com...
Serhiy Serbin
srs@...
Send Email
Sep 5, 2006
3:21 pm
13870
You need to #include <atlcrack.h>. You'll also need REFLECT_NOTIFICATIONS_EX in your dialog's message map. (If that's where it's placed.) Nick. ... ) and...
nbrassel
Offline Send Email
Sep 6, 2006
8:44 am
13871
Hi all, I'm confused and liked to know your opinion. In short: I think there is a general CString design problem if a CString is passed by reference between...
omsip1
Offline Send Email
Sep 6, 2006
2:32 pm
13872
Hi, I patched the atlmisc to support it. But I have done it long time ago when was no Visual Studio 7 with new ATL. So I suggest to look how CString now is...
Serhiy Serbin
srs@...
Send Email
Sep 6, 2006
2:47 pm
13873
I have an ActiveX control within IE. The control downloads some files (using URLDownloadToFile). I want to be able to identify when the user closes the...
gilad_no
Offline Send Email
Sep 7, 2006
3:00 pm
13874
... Your control will be unseated - IOleObject::SetClientSite will be called with NULL pointer. ... You can sink onbeforeunload event from the hosting page:...
Igor Tandetnik
itandetnik
Offline Send Email
Sep 7, 2006
4:07 pm
13875
Thank you for your reply, Igor. I've already tried to subclass the top level window. I wasn't able to prevent it from closing. I'll try it again. Can I also...
gilad_no
Offline Send Email
Sep 7, 2006
4:43 pm
13876
My control is a composite control. I've declared "CContainedWindow m_Host" variable, initialized it using "m_Host(this,2)", and during my OnInitDialog, I call...
gilad_no
Offline Send Email
Sep 7, 2006
4:50 pm
13877
When a file association changes, the icon used to indicate that type of file will often change as well. However, the system image list does not get updated...
Richard Butler
dj_deipotent
Offline Send Email
Sep 7, 2006
4:52 pm
13878
... Try also handling WM_SYSCOMMAND(SC_CLOSE) -- With best wishes, Igor Tandetnik With sufficient thrust, pigs fly just fine. However, this is not necessarily...
Igor Tandetnik
itandetnik
Offline Send Email
Sep 7, 2006
5:35 pm
13879
To prevent navigating elsewhere, you should be able to sink webbrowser events from IE and handle the BeforeNavigate2 event. See "Reusing the WebBrowser...
Joe Andrieu
jpandrieu
Offline Send Email
Sep 7, 2006
5:36 pm
13880
... You could probably sink BeforeNavigate2 event from the hosting browser, and cancel all navigation requests. -- With best wishes, Igor Tandetnik With...
Igor Tandetnik
itandetnik
Offline Send Email
Sep 7, 2006
5:45 pm
13881
I remember there was a function to automatically uninstall a CAB file from IE. It had the control's CLSID as a parameter, and it was able to uninstall the...
gilad_no
Offline Send Email
Sep 7, 2006
7:16 pm
13882
I have a class that derives from public CPropertyPageImpl<>. Here is my class definition: class CWizWelcome : public CPropertyPageImpl<CWizWelcome> { public: ...
Levi
skankwilsonite
Offline Send Email
Sep 7, 2006
7:51 pm
13883
Sorry. That code works a lot better when you add: CHAIN_MSG_MAP(CPropertyPageImpl<CWizWelcome>) To the message map. Anyway, anyone else that ran (runs) into ...
Levi
skankwilsonite
Offline Send Email
Sep 7, 2006
7:56 pm
13884
You need to chain messages: CHAIN_MSG_MAP(CPropertyPageImpl<CWizWelcome>) Gilad...
gilad_no
Offline Send Email
Sep 7, 2006
7:57 pm
13885
Found it - RemoveControlByName. Gilad...
gilad_no
Offline Send Email
Sep 7, 2006
8:38 pm
13886
I recently had a complete computer meltdown so I am in the process of rebuilding. I have a project which fails with the following: CImage _imgVideoFile; ...
Peter Carlson
carlson_home
Offline Send Email
Sep 8, 2006
5:51 am
13887
... of ... &encoderParameters); ... arguments ... SDK's? Or ... It sounds like you mixed the ATL::CImage class with the GDI+ Image class. From what I recall,...
He Shiming
billholtsh
Offline Send Email
Sep 8, 2006
6:26 am
13888
I found an old atlimage.h file from my crashed hard drive. It has inline HRESULT CImage::Save( IStream* pStream, REFGUID guidFileType, ...
Peter Carlson
carlson_home
Offline Send Email
Sep 8, 2006
4:25 pm
13889
I am trying to use WTL to host IE as an ActiveX control on Windows CE 4.2. The furthest I have gotten is to see that it wasn't working straight out of the box...
jspraul
Offline Send Email
Sep 10, 2006
12:30 am
13890
Jed, I haven't tried any of this on CE, but I've been doing a lot of work with IE loaded as an ActiveX control lately. Do you have code working that can load a...
Joe Andrieu
jpandrieu
Offline Send Email
Sep 10, 2006
1:36 am
13891
Hi, This might be silly but how do I use property sheet/wizard as my program main window? I used the WTL wizard to generate code for a dialog based ...
He Shiming
billholtsh
Offline Send Email
Sep 10, 2006
12:59 pm
13892
Hi He Shiming, Look at the Desktop folder project in PSApp.zip in the group Files Section: ...
Alain Rist
arnavpoch
Offline Send Email
Sep 10, 2006
1:45 pm
13893
... http://f1.grp.yahoofs.com/v1/UAwERXV4F8UoVxA2IU9d9sGvS5D6UqDlbxBWHlp0 R7XSocQ ... Thanks. Well, it does create and hide the mainframe. I could do that to...
He Shiming
billholtsh
Offline Send Email
Sep 10, 2006
3:14 pm
13894
Hi He Shiming, I uploaded a modal Property Sheet application in the files section: PSApp.zip. Folder is ‘PSApp/Desktop/PSModal’. The reason why you cannot...
Alain Rist
arnavpoch
Offline Send Email
Sep 10, 2006
7:07 pm
Messages 13865 - 13894 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help