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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 16191 - 16220 of 16220   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date v
16220
i used it with vs 6.0 it works but has some problems the code wizard crashes when i added a notify message it was added successfully.but when i deleted it was...
superjo2007
Offline Send Email
7:29 am
16219
has any one tried winxgui is it better than wtl...
superjo2007
Offline Send Email
6:49 am
16218
hey i tried it its very cool thanks ... From: false <shuaixh@...> Subject: 回复: [wtl] Visual WTL wizard To: wtl@yahoogroups.com Date: Friday, 27...
jo jojo
superjo2007
Offline Send Email
6:45 am
16217
I use it. it's very helpful ... 发件人: ms_wtl <ms_wtl@...> 主题: [wtl] Visual WTL wizard 收件人: wtl@yahoogroups.com 日期:...
false
shuaixh
Offline Send Email
Nov 27, 2009
4:20 pm
16216
Hello, umeca74! ... Look at this controls - http://www.viksoe.dk/code/propertylist.htm, http://www.viksoe.dk/code/propertytree.htm and...
Александ...
marty_19772008
Offline Send Email
Nov 27, 2009
11:56 am
16215
I am thinking of a property grid type of control, either as a tree netscape style or as a .NET property editor. There are plenty of stuff for MFC (eg...
umeca74
Offline Send Email
Nov 27, 2009
10:53 am
16214
Is anybody using this WTL wizard ? http://sourceforge.net/projects/visualfc/ Do you find it helpful ?...
ms_wtl
Offline Send Email
Nov 23, 2009
1:18 pm
16213
... In your CMainFrame::OnCreate there should be something like: CreateMDIClient(); m_CmdBar.SetMDIClient(m_hWndMDIClient); At this point you can subclass the...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 20, 2009
2:10 pm
16212
Hi, I have MDI application and I want to draw some image on main MDI window (MainFrm), like company logo and some text. Responding on WM_PAINT message didnt...
yooyo3d
Offline Send Email
Nov 20, 2009
12:07 pm
16211
Yes I did, no problem :), cheers, AR ... From: jon_feider To: wtl@yahoogroups.com Sent: Thursday, November 19, 2009 11:26 AM Subject: [wtl] WTL with VS2010...
Alain Rist
arnavpoch
Offline Send Email
Nov 19, 2009
2:11 pm
16210
link msvcrtd.lib for debug version and msvcrt.lib for release version ... From: mike <mike@...> Subject: [wtl] unresolved symbols To: "wtl"...
jo jojo
superjo2007
Offline Send Email
Nov 19, 2009
1:25 pm
16209
Has anyone else tried WTL with Visual Studio 2010 Beta2 and the Windows 7 SDK? I haven't yet, but I'm thinking about it and hoping someone who already has can...
jon_feider
Offline Send Email
Nov 19, 2009
1:23 pm
16208
... Not sure, but I don't think there's any reason to use WTL::CString unless you're targeting ATL version 3. Just use the ATL::CString in atlstr.h. To get rid...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 19, 2009
12:18 pm
16207
A colleague modified his ATL project and now he's getting 2>FolderFileCtrl.obj : error LNK2019: unresolved external symbol "public: __thiscall...
mike
mwfrith
Online Now Send Email
Nov 18, 2009
8:11 pm
16206
... If the edit control is in a dialog then you will have trouble with VK_TAB and VK_RETURN, as the dialog manager intercepts those keystrokes. In that case...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 18, 2009
7:07 pm
16205
Awesome! Jim, I owe you several beers. I do not know where you live, but if you happen to be in Arizona, I would be happy to bring it :) The code I'm...
izm_ka
Offline Send Email
Nov 18, 2009
6:41 pm
16204
... Just handle WM_PASTE. You can examine the contents of the clipboard, and if you like what you see then pass the message on to the edit control. - Jim...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 18, 2009
6:24 pm
16203
CHexEdit is a good idea, I'll try it shortly. However, how would you disable pasting arbitrary text into the edit box? The property page is declared as: [ ...
izm_ka
Offline Send Email
Nov 18, 2009
6:05 pm
16202
... As already mentioned, there is the ES_NUMBER style, though it doesn't support signed numbers or hexadecimal. ... You don't need a message filter - just...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 18, 2009
1:43 pm
16201
... Constructor seems like a good place. ... I don't know what an "ATL Property Page" is. CMessageFilter is only useful in a WTL application, where the message...
Igor Tandetnik
itandetnik
Offline Send Email
Nov 18, 2009
12:35 pm
16200
ES_NUMBER style does not work? -km ... From: izm_ka To: wtl@yahoogroups.com Sent: Wednesday, November 18, 2009 6:53 AM Subject: [wtl] PreTranslateMessage is...
Konstantin Mironovich
const_at_ixbt
Offline Send Email
Nov 18, 2009
11:44 am
16199
Nope - I do not really know where to register the message loop. My inplace edit box is shown in an ATL Property Page which can be invoked from any app, e.g....
izm_ka
Offline Send Email
Nov 18, 2009
7:10 am
16198
... Did you actually register your message filter? Something like CMessageLoop* pLoop = _Module.GetMessageLoop(); pLoop->AddMessageFilter(this); -- With best...
Igor Tandetnik
itandetnik
Offline Send Email
Nov 18, 2009
5:23 am
16197
Maybe this question has been answered somewhere on forums, but I could not find. Basically, I want to filter chars in the in-place edit box to allow entering...
izm_ka
Offline Send Email
Nov 18, 2009
3:53 am
16196
... Virtual beer? :) - Jim...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 17, 2009
12:28 pm
16195
Yes, that was it! After I added CWindowImpl::DefWindowProc the cursor is working! Thank you very much! Jim, may I buy you beer?...
izm_ka
Offline Send Email
Nov 17, 2009
2:07 am
16194
Hello All This is a weird scenario which I cannot understand and I'm looking for a way to debug this and figure it out. The app is an IE plugin, which is...
o_magen1
Offline Send Email
Nov 17, 2009
12:51 am
16193
... Don't call the Win32 API function DefWindowProc directly. If you set bHandled to FALSE, the message will automatically be passed on to the original window...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 16, 2009
1:52 pm
16192
I'm converting an MFC application into WTL 8.1 and stuck with issues. The in-place control (see below) is working only once. If it looses focus and gets the...
izm_ka
Offline Send Email
Nov 16, 2009
1:24 pm
16191
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 :...
wtl@yahoogroups.com
Send Email
Oct 31, 2009
7:30 am
Messages 16191 - 16220 of 16220   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

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