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 your group to be featured on the Yahoo! Groups website? 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 16046 - 16075 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16046
Hi Folks, So, I've writtten this window finder thingie, like the window finder in Spy++ but hopefully a lot better. It's based on CStatic and displays a bitmap...
domehead100
Offline Send Email
Jun 2, 2009
5:25 am
16047
... No. The message map _is_ ProcessWindowMessage - check out what BEGIN_MSG_MAP macro actually expands to. ProcessWindowMessage is a virtual function, so a...
Igor Tandetnik
itandetnik
Offline Send Email
Jun 2, 2009
1:02 pm
16048
I've also just run into the same problem with using WTL CString, and solved the problem by following Jim's advice. Given the problems that can occur with using...
Richard B.
dj_deipotent
Offline Send Email
Jun 2, 2009
6:22 pm
16049
... ATL didn't originally have CString (it was MFC only) so WTL defined its own. When the MFC/ATL shared classes were introduced (in VC2002 I think) then WTL's...
Jim Barry
jim_barry.geo
Offline Send Email
Jun 3, 2009
10:05 am
16050
Ah, I didn't realise that didn't originally have them. Thanks for the info! -- Best regards, Richard B....
Richard B.
dj_deipotent
Offline Send Email
Jun 3, 2009
10:15 am
16051
Hi all I've mentioned all I want in the subject line. Moji [Non-text portions of this message have been removed]...
Mojtaba Fathi
modjtabaf
Offline Send Email
Jun 3, 2009
5:03 pm
16052
I am interested in your wrapper too....
timfun@...
timfun@yahoo.cn
Offline Send Email
Jun 8, 2009
12:51 pm
16053
Hi, I have an application where I can have multiple windows open - each of these is an SDI window with a view derived from CDialogImpl. I am not getting the...
arasakumaran
Offline Send Email
Jun 13, 2009
6:58 am
16054
Given that ATL/WTL's CString class has all of the methods inlined, would I be right in thinking that using CString can result in code-bloat if it's used...
Richard B.
dj_deipotent
Offline Send Email
Jun 13, 2009
9:04 pm
16055
My understanding of the conventional wisdom is to let the compiler and linker deal with this issue. Inline means that the function/method MAY be expanded...
Dick Dievendorff
g0mfo
Offline Send Email
Jun 13, 2009
9:16 pm
16056
class CPictureOpenDlg : public CFileDialogImpl<CPictureOpenDlg> { public: CPictureOpenDlg( // Supports only FileOpen LPCTSTR lpszDefExt = NULL, LPCTSTR...
veryggungs
Offline Send Email
Jun 17, 2009
12:38 pm
16057
Hi, The only notification sent by the Mobile Common File Dialogs is CDN_TYPECHANGE so your OnInitDone() member is never called. cheers, AR ... From: veryggungs...
Alain Rist
arnavpoch
Offline Send Email
Jun 17, 2009
3:31 pm
16058
Hello. I am writing a WTL application and for whatever maddening reasons I have decided to not use the existing menu/toolbar structure and have my own...
tbandrowsky
Offline Send Email
Jun 18, 2009
7:20 pm
16059
You can see how the WTL frame class does it by looking at its implementation of Updatelayout(). UpdateLayout() calls UpdateBarsPostion() to position the tool...
Richard Crossley
rdc892515
Offline Send Email
Jun 18, 2009
7:39 pm
16060
Now I've noticed that UpdateLayout is not actually a virtual method. So, what I did was something like this: void UpdateLayout(BOOL bResizeBars = TRUE) { RECT...
tbandrowsky
Offline Send Email
Jun 18, 2009
10:39 pm
16061
That sounds like you've modified the WTL frame class? If that's the case then just add UpdateLayout() to your frame class deriving from the WTL frame class and...
Richard Crossley
rdc892515
Offline Send Email
Jun 18, 2009
10:57 pm
16062
That's magnificent. Thank you!...
tbandrowsky
Offline Send Email
Jun 18, 2009
11:16 pm
16063
Hi, First I'd like to say "big thanks" to the WTL team for this GREAT library! I have my own BrowseForFolder C++ class but I recently decided to use the...
dev_etech
Offline Send Email
Jun 20, 2009
10:24 pm
16064
Hi Philippe, Thank you for both your kind words and the bug report. Indeed, you are right, string should be passed as lParam. This will be corrected. Cheers, ...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Jun 21, 2009
9:06 pm
16065
Hi, I am having the oddest problem with wtl8 on Vista. Opening a file dialog brings up a wait cursor and then my App hangs; no window appears. Of course this...
jochen.stier
Offline Send Email
Jun 23, 2009
1:42 pm
16066
... Just a guess, not much info to go on, but it's good practice to use ATL::CString instead of WTL::CString. So, change: #define _WTL_USE_CSTRING to #define...
domehead100
Offline Send Email
Jun 23, 2009
5:07 pm
16067
Hi The WTL::CCommandBarCtrlImpl class template has a member variable named m_wndParent, which it uses to capture messages from it's parent window. This member...
Mojtaba Fathi
modjtabaf
Offline Send Email
Jun 25, 2009
11:44 am
16068
in wtl, i want to get which items are being selected in a listview control. in MFC, i can use  GetFirstSelectedItemPosition(); GetNextSelectedItem.   so, how...
carr 帅
shuaixh
Offline Send Email
Jun 26, 2009
6:36 am
16069
There are several methods of CListViewCrlT to get rid of the problem. GetSelectedIndex Method to get the current selected item's index (single select mode...
Philip Chan
comphilip
Offline Send Email
Jun 26, 2009
7:43 am
16070
does anyone have  SDK demo codes about how to get multiselected lines of a listview control ??   it seems, there's no wrapper in WTL. it's easy in MFC.. ...
carr 帅
shuaixh
Offline Send Email
Jun 26, 2009
9:25 am
16071
Retrieve indexes of all selected items UINT uSelectedCount = GetSelectedCount(); int nIndex = -1; // Loop through all selected items for (UINT i = 0; i <...
igorv007
Offline Send Email
Jun 27, 2009
12:18 am
16072
I have tried changing to _WTL_NO_CSTRING but the problem still occurs. I did install VC 2005 on my vista machine and recompiled the app there, but the problem...
jochen.stier
Offline Send Email
Jun 28, 2009
12:36 am
16073
Hi Jochen, I don't know what your problem comes from but I would be suprised it comes from the WTL, CString or Vista. I have several VC6 XP-compiled...
Yarp
yarp2002
Offline Send Email
Jun 29, 2009
8:16 am
16074
Hi, Can someone send me or give me a link of a simple atl composite control, generated by the application wizard that has some buttons, comboboxes... on it...
luc.roels
Offline Send Email
Jul 1, 2009
8:24 am
16075
I having a problem with a CTabCtrl in a CSplitterWindow when I am using Common Controls 6.0.0.0. The area where the tabs are located is not being redrawn...
jochen.stier
Offline Send Email
Jul 5, 2009
1:42 am
Messages 16046 - 16075 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