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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 15661 - 15691 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15661
Hi, I have uplodaded (customdrawlit_ce.zip) a sample project with a custom draw list ctrl that I am trying to developp. I have some issues with customdrawing :...
smartmobili
Offline Send Email
Nov 2, 2008
12:25 pm
15662
... Oups I wanted to say in large Icon mode, I havent't tested what happens in report mode....
smartmobili
Offline Send Email
Nov 2, 2008
1:10 pm
15663
Hi, ... Use CListViewCtrl::GetSelectedIndex() or CListViewCtrl::GetSelectedItem(). ... Use ::ImageList_SetBkColor() with CLR_NONE. ... Use...
Alain Rist
arnavpoch
Offline Send Email
Nov 2, 2008
4:53 pm
15664
when we develop an application that's not so small, it might be consisted of serverl projects (serveral activex controls) and that IDE is a framework to...
succeeded918
Offline Send Email
Nov 5, 2008
8:42 am
15665
now i want to implement the hotkey customization feature just like in Photoshop. could anyone give me some advice?...
succeeded918
Offline Send Email
Nov 5, 2008
8:44 am
15666
I'm using a Windows Mobile device, IS is version 6.1. I'm Using WTL and I have a DLL that loads itself into the tmail.exe process (the inbox application)....
rongearley
Offline Send Email
Nov 5, 2008
9:35 pm
15667
... does this help? http://www.codeproject.com/KB/system/keyAssignDlg.aspx...
Nikos Bozinis
umeca74
Offline Send Email
Nov 6, 2008
7:14 am
15668
Hi, I am developping on windows mobile a custom draw ClistCtrl and it seems that when I try to get drawing area for icon I only get size and not position. for...
smartmobili
Offline Send Email
Nov 10, 2008
4:32 pm
15669
... Hum actually it's because I was using custom draw and a listctrl in icon mode... It seems it only works with report mode....
smartmobili
Offline Send Email
Nov 10, 2008
4:41 pm
15671
smartmobili wrote: Perhaps you should use LVS_ALIGNTOP style....
Ricardo
kypdurron01
Offline Send Email
Nov 11, 2008
8:38 am
15672
Did you get this resolved? I don't do mobile development, so maybe none of this applies, but just throwing out some thoughts: 1) Not sure if you can do...
Michael Stephenson
domehead100
Offline Send Email
Nov 11, 2008
4:41 pm
15673
Hi, Thanks for the thoughts... I've commented below: 1. I haven't looked at PreTranslateMessage(), but I'm not sure how I'd get hooked into it unless I...
rongearley
Offline Send Email
Nov 11, 2008
5:15 pm
15674
Just a little confused :o). You said that you are subclassing a window, and that you are then unsubclassing it in your WM_NCDESTROY handler, but then you said...
Michael Stephenson
domehead100
Offline Send Email
Nov 12, 2008
1:15 pm
15675
I looked at the WndProc code and it does indeed unsubclass the window if I don't do it in WM_NCDESTROY. I just did it on my own to better control when it is...
rongearley
Offline Send Email
Nov 12, 2008
3:57 pm
15676
Hi Ron, Still a bit confused, since the WM_NCDESTROY is sent to the window which is being destroyed, which you have subclassed, if you are receiving that ...
Michael Stephenson
domehead100
Offline Send Email
Nov 12, 2008
5:27 pm
15677
Hi Michael, There are two scenarios: 1. I'm loaded within the inbox and I close the process via task manager. That works well and I see WM_NCDESTORY. This...
rongearley
Offline Send Email
Nov 12, 2008
5:43 pm
15678
Hi Ron, Starting to make sense. Sounds like you need to unsubclass the window independenly if the DLL is unloaded but you haven't already done so via...
Michael Stephenson
domehead100
Offline Send Email
Nov 12, 2008
6:29 pm
15679
Hi Mike, This bit of logic works well for me already. I know I'm being unloaded and if my IsWindow() function returns true, I know I've subclassed a window...
rongearley
Offline Send Email
Nov 12, 2008
6:39 pm
15680
Hi Ron, Sure, UnsubclassWindow compares the address of the thunk WndProc function and the current WndProc address from the window class (via GetWindowLong). If...
Michael Stephenson
domehead100
Offline Send Email
Nov 13, 2008
2:25 am
15681
Also, if AtlIsValidAddress() is implemented on mobile, that might help give you some insight into whether the thunk or WndProc pointer in the window class is...
Michael Stephenson
domehead100
Offline Send Email
Nov 13, 2008
3:34 am
15682
Hello , every genius:          I love C++ programming,  yet i find it hard to program UI elements, time consuming, boring, complex.   ...
carr 帅
shuaixh
Offline Send Email
Nov 17, 2008
1:13 am
15683
Please help me. i am new to windows programming....
sanju_poudel2007
sanju_poudel...
Offline Send Email
Nov 17, 2008
5:25 am
15684
www.trolltech.com Stanislav Kolar Research & Development ................................................................. Kerio Technologies Anglicke nabrezi...
Stanislav Kolar
skolar@...
Send Email
Nov 17, 2008
8:12 am
15685
Hi, I'm currently, writting a Grid class based on CListViewCtrl. My problem is that I would need to invoke methods from that grid (handlers) in Parent class. ...
Yarp
yarp2002
Offline Send Email
Nov 19, 2008
9:26 pm
15686
My advice: use messages! The WTL programmer is familiar with message maps. Messages are about as generic as it gets (even the message handler function ...
Michael Stephenson
domehead100
Offline Send Email
Nov 20, 2008
4:14 am
15687
Hi Michael, Thanks for your answer. Messages are just what I want to avoid. I know this is common practise in WTL, but I'm reluctant sending messages for each...
Yarp
yarp2002
Offline Send Email
Nov 20, 2008
5:56 am
15688
Hi Yarp, ... Why don't you derive an abstract (templated if necessary) interface and derive the parent from it? That way, the child isn't exposed to the detail...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Nov 20, 2008
8:57 am
15689
Hi Yarp, You may handle your design problem through a parent template param in your control class: template <class T, class TParent, class TBase =...
Alain Rist
arnavpoch
Offline Send Email
Nov 20, 2008
9:11 am
15690
Edit in my previous post: template <class T, class TParent, class TBase = ATL::CWindow, class TWinTraits = ATL::CControlWinTraits> class CMyCtrlImpl { public: ...
Alain Rist
arnavpoch
Offline Send Email
Nov 20, 2008
1:08 pm
15691
Hi Anna, I ignored this was called an interface thanks. I've spent last hour reading about C++ interfaces. Anyway, this seem pretty close to my case #1, except...
Yarp
yarp2002
Offline Send Email
Nov 20, 2008
1:11 pm
Messages 15661 - 15691 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