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 12998 - 13027 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12998
there are bugs in Native Event of VS2003. the Bug report is here(1) I think FastDelegate(2) is a good soluction for native event. regards. (1) ...
Baryon Lee
baryonlee
Offline Send Email
Dec 1, 2005
10:26 am
12999
For VC2003, I place a ListViewCtrl on a dialog and set the style to LVS_REPORT and extended style LVS_EX_FLATSB. But it look like not a flat scroll bar, no...
capturepro
Offline Send Email
Dec 1, 2005
2:00 pm
13000
Thanks for the pointers. I had seen references that the unified event model leaked but had never seen anything that was concrete until your reference. I may...
Scott Kell
scottksignal...
Offline Send Email
Dec 1, 2005
2:12 pm
13001
Despite my better judgment, I just couldn't leave it alone and I think I may have a workable approach to **kludging** ATL attributes to work in a WTL project. ...
Scott Kell
scottksignal...
Offline Send Email
Dec 1, 2005
3:27 pm
13002
the problem with these seem to be they need an ID_SOMETHING that the control is bound to. how can i use these macros if i am just creating the controls in the...
gan_v_x
Offline Send Email
Dec 2, 2005
5:07 am
13003
In COMMAND_HANDLER (NOTIFY_HANDLER etc) use m_list.GetDlgCtrlId() as ID...
Sergey Solozhentsev
solozhentsev
Offline Send Email
Dec 2, 2005
6:29 am
13004
... Ah. Well, if you want to "hide" "one" top-level menu item, such as "View", and its a plain win32 app, I'd use GetMenuItem(), RemoveMenu(), and...
Andrew E
ellers88
Offline Send Email
Dec 2, 2005
6:57 am
13005
"gan_v_x" <vijay_ganapati@...> wrote in message news:dmokot+30ui@eGroups.com ... One of the Create() parameters that you omitted is the control ID. Can't...
Igor Tandetnik
itandetnik
Offline Send Email
Dec 2, 2005
12:59 pm
13006
... These parameters to the macros don't have to be constants, so you can use m_list.GetDlgCtrlID() instead of ID_SOMETHING. Anthony -- Anthony Williams ...
Anthony Williams
anthony_w.geo
Offline Send Email
Dec 2, 2005
1:57 pm
13007
Hello, First question ... How do I create a flatScrollbar TreeView ? I use : class CLevelTreeView : public CWindowImpl<CLevelTreeView, ...
Noel Frankinet
gistek2000
Offline Send Email
Dec 2, 2005
2:53 pm
13008
... Does your app have a manifest? Flat scrollbars are not supported by the v6 common controls. -- Jim Barry, MVP (Windows SDK)...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 2, 2005
5:29 pm
13009
... Thank you for your help, I don't have a manifest (I don't know what is it for ?) I do have flat scroll bar everywhere, but not in my tree view. Any idea ? ...
Noel Frankinet
gistek2000
Offline Send Email
Dec 2, 2005
5:35 pm
13010
... The MSDN documentation states that flat scrollbars do not do anything on Windows XP. Also calling FlatSB_Initialize() is required. And the listview seems...
Bjarke Viksøe
bviksoe
Offline Send Email
Dec 2, 2005
5:41 pm
13011
... Ah, ok, so there is no point in keeping trying, I suppose. Thank you Bjarke (and also thanks for your excellent web pages). -- Noël Frankinet Gistek...
Noel Frankinet
gistek2000
Offline Send Email
Dec 2, 2005
5:45 pm
13012
Hi, how would i display large button in a WTL application, like Powerarchiver & winzip. I tried to replace the toolbar.bmp with a one with a large image, but...
blackhorus
Offline Send Email
Dec 2, 2005
9:24 pm
13013
Hi, WM_RBUTTONUP in the tree control does not seem to be working correctly, it's handler is called on right button double click instead. But WM_LBUTTONUP is...
igorv007
Offline Send Email
Dec 3, 2005
5:24 am
13014
Hello I know this is more a Win32 question, but I need to modify the right click menu on ANY textbox. So that when a user right clicks on ANY textbox (ie not...
Angus Comber
anguscomber
Offline Send Email
Dec 3, 2005
1:46 pm
13015
... instead. ... Perhaps it is caught internally by the control in an attempt to generate the NM_RCLICK and WM_CONTEXTMENU notifications. Wouldn't it be...
Bjarke Viksøe
bviksoe
Offline Send Email
Dec 3, 2005
2:18 pm
13016
... click ... textbox (ie ... entry. ... You should probably look into message hooks on MSDN (SetWindowsHookEx). I don't believe there is a "nice" way to do...
Bjarke Viksøe
bviksoe
Offline Send Email
Dec 3, 2005
2:33 pm
13017
Thanks a lot for your suggestion, Bjarke. But I should have read MSDN. It says: “... the message is posted to the window that has captured the mouse.” So...
Igor Vigdorchik
igorv007
Offline Send Email
Dec 3, 2005
4:28 pm
13018
Hi Nenad and all I know the dust is just settling on WTL 7.5. Any thoughts about what to aim for for the next release (?WTL 8.0?) Thanks for all the great...
Mike Diack
mikediack
Offline Send Email
Dec 4, 2005
1:04 pm
13019
Hello I have developped a WTL app for a device that uses WinCE 4.2. This application has a main dialog which invokes a Propertysheet that contains two...
rz0
Online Now Send Email
Dec 4, 2005
5:42 pm
13020
Isn't this what class-subclassing was all about?...
Michelangelo Partipilo
mike2001ve
Offline Send Email
Dec 5, 2005
1:24 pm
13021
Hi, I have a question regarding in-place tree control label editing. In the TVN_ENDLABELEDIT handler I have the following code: LRESULT OnEndLabelEdit(int...
igorv007
Offline Send Email
Dec 5, 2005
4:26 pm
13022
... I don't get what you are doing here. If you want to accept the edited text, you should just return TRUE from OnEndLabelEdit. -- Jim Barry, MVP (Windows...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 5, 2005
5:23 pm
13023
Yes, I want to accept the edited text, but returning TRUE did not work. I had to call SetItem() to re-set the label. ... edited text, you should just return...
igorv007
Offline Send Email
Dec 5, 2005
6:08 pm
13024
... Well, it should work, so let's concentrate on that. Is the tree-view control in a dialog? If so, have a look at this article that I wrote some years ago: ...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 5, 2005
8:08 pm
13025
Jim, thanks for the link, I've found your article before on Google but my issue is a bit different. My tree control is in the dialog and I can enter a text in...
igorv007
Offline Send Email
Dec 5, 2005
9:57 pm
13026
... And one more Yeah! from another WTL user from Poland :-))) Thanks Nenad and the Team from that release! ... StdDialogs, ... yuck. ... Hehe, WTL users are...
Mateusz Loskot
gekonioo
Offline Send Email
Dec 6, 2005
6:29 am
13027
... So what are you saying, that pszText is null if you edit the label then hit the enter key or click outside the edit box? Maybe you could send me a small...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 6, 2005
12:59 pm
Messages 12998 - 13027 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