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 15549 - 15580 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15549
I am using VS 2005 and WTL 8.0 and I'm trying to upgrade my application to use the new v6 common controls. I thought if would be as simple as adding the...
wdillman
Offline Send Email
Sep 3, 2008
3:05 am
15550
Oooooooooo..., I hate doc/view!!! ... just like the search box in Vista Windows Explorer. ... ...
jay.zephyr
jay_zephyr2002
Offline Send Email
Sep 3, 2008
12:45 pm
15551
Just add WTL include directory to your include path!!! Good luck!...
jay.zephyr
jay_zephyr2002
Offline Send Email
Sep 3, 2008
12:48 pm
15552
... Or copy the following codes and save to %WTL%\AppWiz\setup90.js and run the script. ////////////////////////////////setup90.js//////////////////////////// ...
jay.zephyr
jay_zephyr2002
Offline Send Email
Sep 4, 2008
2:17 pm
15553
Hi All, There is some MDI-application using several View-classes. It is necessary to forward some messages (e.g. mouse messages) FROM ANY of view instances TO...
mail4gsv
Offline Send Email
Sep 4, 2008
8:07 pm
15554
... Don't? :o) Have you ever used PreTranslateMessage? This might be a solution, using it to have your various view classes monitor incoming messages from the...
domehead100
Offline Send Email
Sep 4, 2008
9:13 pm
15555
Hi, I am designing an application running on Pocket PC and smartphone and I have created some controls to minimize differences. For instance the following...
smartmobili
Offline Send Email
Sep 5, 2008
12:47 pm
15556
... Not yet! :) I've been never changed the default PreTranslateMessage handler. <:( ... Sounds very hopeful, thanks! But I'm not sure that everything is it ...
mail4gsv
Offline Send Email
Sep 5, 2008
2:53 pm
15557
... messages, ... point ... Apologies, I should have said "like a typical window procedure". In other words, something like a switch statement where you...
domehead100
Offline Send Email
Sep 5, 2008
5:47 pm
15558
This works (compile and runs as expected on PPC and SP) in an AppWizard Dialog application class CSpintestDialog : public CAppStdDialogImpl<CSpintestDialog>, ...
Alain Rist
arnavpoch
Offline Send Email
Sep 5, 2008
7:38 pm
15559
Hi WTL lovers, Can i build use wtl libraries with MinGW ? Is there a patch or additional compiler directives, macros includes e.g. for mingw to build wtl...
Savas
savas_vdr
Offline Send Email
Sep 8, 2008
3:26 am
15560
Yes it compiles and works because you are using a CSpinListBox while I am using a CWindowImpl derived control : class CSpinListBoxEx : public...
smartmobili
Offline Send Email
Sep 8, 2008
9:39 am
15561
You may subclass a WTL::CListBox and Spin it, for instance class CMyListBox : public CWindowImpl<CMyListBox, CListBox> { public: ...
Alain Rist
arnavpoch
Offline Send Email
Sep 8, 2008
12:14 pm
15562
... The short answer is NO. You cannot build WTL applications with MinGW. WTL depends on ATL, which is not available in a free version of Visual Studio and it ...
Cristian Adam
cristianadam
Online Now Send Email
Sep 8, 2008
8:45 pm
15563
... Cristian, I'm pretty sure patching ATL is illegal. So, the final answer is NO, there is NO way to use ATL/WTL with MinGW. Best regards, -- Mateusz Loskot,...
Mateusz Loskot
mateuszloskot
Offline Send Email
Sep 8, 2008
8:50 pm
15564
... By reading "c:\Program Files\Microsoft Visual Studio 9.0\Microsoft Visual Studio 2008 Professional Edition - ENU\eula.txt" I found out that: "MFCs, ATLs...
Cristian Adam
cristianadam
Online Now Send Email
Sep 8, 2008
9:43 pm
15565
... Cristian, Yes, in-house use is permitted. I understood you want to distribute it. It seems to be a waste of time to patch ATL to use it with MinGW and not...
Mateusz Loskot
mateuszloskot
Offline Send Email
Sep 8, 2008
10:49 pm
15566
... I tried sometimes ago. It seems that gcc 4 has implemented __declspec(selectany), but it will give many errors like "m_hWnd was not declared", looks like...
gchen
chengang31
Offline Send Email
Sep 9, 2008
4:50 am
15567
... Yup. One solution would be to re implement the basic classes needed by WTL from scratch without looking at ATL source code and by using public available ...
Cristian Adam
cristianadam
Online Now Send Email
Sep 9, 2008
6:43 am
15569
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the wtl group. File : /Spintest.zip ...
wtl@yahoogroups.com
Send Email
Sep 9, 2008
5:36 pm
15570
Updated the sample I uploaded some hours ago, to demonstrate SpinListBox subclassing through DDX_CONTROL macro. ...
arnavpoch
Offline Send Email
Sep 9, 2008
9:28 pm
15572
... Because I am using a kind of smart enums (see http://www.codeproject.com/KB/cpp/EnumBinder.aspx). And while I am at it, please do not forget to post a...
smartmobili
Offline Send Email
Sep 10, 2008
12:08 pm
15573
Cristian: Beware of the thunking. It survives to today only because Microsoft provided a backdoor lifeline after implement DEP (Data Execution Prevention) and...
gameboy_2000_us
Offline Send Email
Sep 10, 2008
6:44 pm
15574
... I don't really see why not. All that is required is to create the thunks in memory allocated with the PAGE_EXECUTE_READWRITE attribute. On the other hand,...
Jim Barry
jim_barry.geo
Offline Send Email
Sep 11, 2008
12:10 pm
15575
I guess that we both agree that "handle map" is easier and more portable/future-proof. That answers your "why not". :-) In the link of KB948468 I included in...
gameboy_2000_us
Offline Send Email
Sep 11, 2008
2:47 pm
15576
... portable/future-proof. That answers your "why not". :-) The downside of handle maps is of course the mess they can easily end up in. MFC has always used...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Sep 11, 2008
3:41 pm
15577
Does anyone know of some sample code that puts a WTL view into a SDI or MDI in MFC. I have a MFC MDI project that I would like to migrate to WTL one view at a...
stevev6work
Offline Send Email
Sep 11, 2008
8:32 pm
15578
... Yes, but thunking has better performance. ... I wouldn't say the current approach is "considered hacking". It's just that having the thunks in writable...
Jim Barry
jim_barry.geo
Offline Send Email
Sep 12, 2008
4:02 pm
15579
Has anybody had any success in installing the WTL wizards in Visual Studio 2008? If you have, what steps did you take?...
pgtipsster
Offline Send Email
Sep 12, 2008
4:03 pm
15580
... 1) Copy AppWiz\setup80.js to setup90.js 2) In setup90.js, replace each occurrence of "8.0" with "9.0" 3) Execute setup90.js 4) Er, that's it! -- Jim Barry,...
Jim Barry
jim_barry.geo
Offline Send Email
Sep 12, 2008
4:15 pm
Messages 15549 - 15580 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