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 15440 - 15469 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15440
Hi, I am pretty new to developing with WTL. In my code there is a FileDialog class (based on CFileDialogImpl) and I want this dialog to start wir Thumbnail...
Christian
chrigelpi
Offline Send Email
May 9, 2008
12:36 pm
15441
... I ... Take a look at CFileDialogEx in atldlgs.h. There is an ExFlags parameter in the constructor that does what you want. If you still need to derive...
domehead100
Offline Send Email
May 9, 2008
5:31 pm
15442
... That's only for Windows CE. On "normal" Windows, there's no documented method - you'd have to hack it by sending a WM_COMMAND message to the DefView window...
Jim Barry
jim_barry.geo
Offline Send Email
May 9, 2008
5:51 pm
15443
... documented method - you'd have to hack it by sending a WM_COMMAND message to the DefView window with the undocumented command ID of 28717. ... Doh! Thanks...
domehead100
Offline Send Email
May 9, 2008
6:43 pm
15444
... No, the shell view still doesn't exist at that point. You have to post yourself a message - by the time the message is processed, the window will have been...
Jim Barry
jim_barry.geo
Offline Send Email
May 12, 2008
10:08 am
15445
Hi all, I have a edit control impl class and associate it with a CToolTipCtrl. The tool tip shows OK. But the odd behavior is that, after I click inside the...
avewtl
Offline Send Email
May 18, 2008
1:59 pm
15446
HI everyone,       Sorry for bothering you again.. But it's really urgent for me to get the problem(Creating a vertical toolbar using WTL::CToolBarCtrl)...
jack lin
jacklin5168
Offline Send Email
May 20, 2008
1:01 am
15447
Is it possible to do a dialog based app (i.e. main window is a dialog) which is tabbed. If yes, how do I go about do this - do I need to change Main Window ...
wtlnewbie
Offline Send Email
May 20, 2008
1:40 pm
15448
... There is a sample that may have what you want in the group files area. Click the Files link at the left on the group home page, and take a look at...
johndiiix
Online Now Send Email
May 20, 2008
1:43 pm
15449
See also PSApp.zip : A small PPC and Desktop sample using a PropertySheet as view or modal window application. cheers, AR ... dialog) ... Window ... way. ... ...
arnavpoch
Offline Send Email
May 20, 2008
2:01 pm
15450
What happened when you just created the toolbar with the vertical window that you wanted? There are a lot of articles concerning WTL at CodeProject, and it ...
johndiiix
Online Now Send Email
May 21, 2008
3:28 am
15451
What happened when you just created the toolbar with the vertical window that you wanted? There are a lot of articles concerning WTL at CodeProject, and it ...
johndiiix
Online Now Send Email
May 22, 2008
2:07 am
15452
Thanks a lot. All 3 PSApp, PSModal & Tabbed Dialog are just what I am looking for. However, I am confused as to what's the difference between PSModal & PSApp. ...
wtlnewbie
Offline Send Email
May 22, 2008
6:35 am
15453
class CMyTabCtrl : CWindowImpl<CMyTabCtrl, CTabCtrl> { ... MESSAGE_HANDLER(WM_CREATE, OnCreate) MESSAGE_HANDLER(WM_SIZE, OnSize); ... LRESULT OnCreate(...) { ...
succeeded918
Offline Send Email
May 22, 2008
8:30 am
15454
Hi, I've been scouring this group and the web for a best-practice for creating an app that utilizes multiple top-level windows, and in vain... I have a main...
mmlpwt
Offline Send Email
May 22, 2008
2:25 pm
15455
Hi Mike, ... I've not tried to do what you are aiming for, but by parenting the new window to m_hWnd you are guaranteeing that it will be created as a child ...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
May 22, 2008
3:16 pm
15456
... vain... ... I think that is basically what the "Multiple Threads SDI" application type is in the ATL/WTL Appwizard. Just select "Multiple Threads SDI" as...
domehead100
Offline Send Email
May 23, 2008
1:55 am
15457
... toolbar using WTL::CToolBarCtrl) done.  I tried in many ways, and not successed any time. Seems you are familiar with MFC, so you are aware that the...
domehead100
Offline Send Email
May 23, 2008
3:13 am
15458
hello i hope this will be useful for you. here is the way i use that purpose, example with 5 views regards jjc class CMainFrame : public CFrameWindowImpl<...
jjcambefort
Offline Send Email
May 23, 2008
8:46 am
15459
mmlpwt <mml6364@...> wrote:My next attempt would be to not use CWindowImpl, but use CFramewWindowImpl for the secondary top-level windows. But, I have a ...
Rick Parrish
ultra_wide_band
Offline Send Email
May 24, 2008
12:48 am
15460
... CWindowImpl, but use ... popup won't appear in the taskbar. Using a CFrameWindowImpl derived class with the parent window set to NULL will work fine ... ...
mmlpwt
Offline Send Email
May 24, 2008
1:35 pm
15461
Hello, I am new to this group but have many years programming experience, much of it using Borland C++ Builder and Borland Delphi. I have been using WTL 7.5...
peter_frazer2000
peter_frazer...
Offline Send Email
May 29, 2008
12:45 pm
15462
I have a CFrameWindowImpl<>-based window. In my WM_CREATE handler, I load values for the last location and size of the window and call MoveWindow() with them....
politicalconfusion
politicalcon...
Offline Send Email
Jun 4, 2008
9:19 pm
15463
I restore my main window's position and size in my main module's Run method, after calling wndMain.CreateEx and before ShowWindow. I save the main window's...
Dick Dievendorff
g0mfo
Offline Send Email
Jun 5, 2008
4:16 am
15464
Thanks. That works perfectly. I find it strange that MoveWindow in the same place (between CreateEx and ShowWindow) doesn't. But I guess SetWindowPlacement...
politicalconfusion
politicalcon...
Offline Send Email
Jun 5, 2008
11:24 pm
15465
thx!...
wtller
Offline Send Email
Jun 6, 2008
5:41 am
15466
... vertical ... to ... /////////////////////////////////////////// Hi John, It's kind of you for your help. But what you refered to is not fit for my...
jacklin5168
Offline Send Email
Jun 10, 2008
7:27 am
15467
... vertical ... to ... /////////////////////////////////////////// Hi John, It's kind of you for your help. But what you refered to is not fit for my...
jacklin5168
Offline Send Email
Jun 10, 2008
7:29 am
15468
... not ... in ... a ... and ... nonclient ... to ... on, ... button ... window ... tooltip ... could ... ////// Hi Mike, I'm so apprieciated for your help....
jacklin5168
Offline Send Email
Jun 10, 2008
8:07 am
15469
... not ... in ... a ... and ... nonclient ... to ... on, ... button ... window ... tooltip ... could ... ////// Hi Mike, I'm so apprieciated for your help....
jacklin5168
Offline Send Email
Jun 10, 2008
8:08 am
Messages 15440 - 15469 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