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 14367 - 14396 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14367
A WTL "CWindow" Object wraps a HWND in its " m_hWnd " member . In MFC ,there is some way to get HWND from CWnd ,CWnd ::FromHandle(),or ...
shuaixh
Offline Send Email
Mar 1, 2007
8:42 am
14368
Hi, I think you do not need it since CWindow is a very ligthweigth class, you only need to use the contex constructor: HWND hwnd = /* initialize the window...
Andrea De Nardis
beppe_genco
Offline Send Email
Mar 1, 2007
4:08 pm
14369
I am just trying the new TabView in WTL 8. If I use the TabView in a SplitterWindow, when the program starts, the TabView won't display properly, the problem ...
gchen
chengang31
Offline Send Email
Mar 1, 2007
5:51 pm
14370
re-send... I am just trying the new TabView in WTL 8. If I use the TabView in a SplitterWindow, when the program starts, the TabView won't display properly,...
gchen
chengang31
Offline Send Email
Mar 2, 2007
5:35 am
14371
Interesting problem. This is what is going on: UpdateLayout for the frame window is called in OnCreate. At that point tab control is not visible (nothing is),...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Mar 2, 2007
10:31 am
14372
Hi Maciej, This sounded like a Vista specific problem. We haven't been doing testing on Vista yet, especially because SP1 update is not yet finished. I tried...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Mar 2, 2007
10:41 am
14373
What you maybe could do is add an additional handler to your main frame to be called after initialization is complete. So, maybe you create an OnPostCreate...
Michael Stephenson
domehead100
Offline Send Email
Mar 2, 2007
3:05 pm
14374
... needed, ... frame ... from ... will ... the problem is that IsWindowVisible returns false not only if the window does not have the WS_VISIBLE style, but...
ntufarellich
Offline Send Email
Mar 3, 2007
12:24 am
14375
I've noticed that there is a new CTabView in WTL. But before that, I even don't know its existence for long. And recently a new version of WTL 8 has been...
enjoy_yjh
Offline Send Email
Mar 3, 2007
6:07 am
14376
That is a good idea, that would work as well. But, I don't think that we should check for visibility at all - the check doesn't really save much. Cheers, Nenad...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Mar 3, 2007
12:10 pm
14377
CTabView was added on Monday, so you couldn't see it before anyway. WTL 8 is a work in progress - the releases are incremental to cover things that were added....
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Mar 3, 2007
12:12 pm
14378
WTL's accelerator's support is as good as MFC's. But if a MFC command ID is disabled by UI update, its accelerator will also be disabled. But it seems...
enjoy_yjh
Offline Send Email
Mar 4, 2007
7:47 am
14379
Since WTL's UI update function is different from MFC, is it possible to use UI update in a view class, not a FrameWnd? Someitmes it's better to update UI in...
enjoy_yjh
Offline Send Email
Mar 4, 2007
7:48 am
14380
It's a 'feature' of CUpdateUI. Try calling UISetBlockAccelerators(true). R....
Richard Crossley
rdc892515
Offline Send Email
Mar 4, 2007
9:07 am
14381
... to ... what i do is pass the frame pointer to the view upon creation, casted to CUpdateUIBase* then you can have updates in the view as in: ...
Nikos Bozinis
umeca74
Offline Send Email
Mar 5, 2007
1:46 pm
14382
On mobile platform, I need to forge my application to work in landscape mode. How to set it up inside the code? Is there a function to call during OnInitDialog...
gilad_no
Offline Send Email
Mar 5, 2007
4:49 pm
14383
that seems effective, thanks! ... possible ... casted...
enjoy_yjh
Offline Send Email
Mar 6, 2007
6:17 am
14384
Thanks. That works. ... (true). ... command ... disabled. But ... diabled. ... which...
enjoy_yjh
Offline Send Email
Mar 6, 2007
6:19 am
14385
Hi, I installed WTL wizards for Visual C++ 2005 and when I try to create new project for Pocket PC 2003 or Windows Mobile 5.0 for Pocket PC, I get following...
Mateusz Loskot
mateuszloskot
Offline Send Email
Mar 6, 2007
11:42 am
14386
Hi Mateusz, Please, give more info: supporting development platform and steps from VS2005 File->New->Projects Thanks, AR _____ De : wtl@yahoogroups.com...
Alain Rist
arnavpoch
Offline Send Email
Mar 6, 2007
11:56 am
14387
Are there any simple TabView samples out there (or is it ready for consumption yet)? Gordon....
schmoo2k
Online Now Send Email
Mar 6, 2007
3:47 pm
14388
... Hi Gilad, You can derive your dialog class from the dual template CStdOrientedDialogImpl(PPC only)or from the resizing CStdDialogResizeImpl (PPC and...
arnavpoch
Offline Send Email
Mar 6, 2007
4:13 pm
14389
Or for a Dialog-based app in the WTL 8 AppWizMobile: Application Type->Dialog based->Orientation aware: select the option. _____ De : wtl@yahoogroups.com...
Alain Rist
arnavpoch
Offline Send Email
Mar 6, 2007
4:28 pm
14390
Hi, I am looking to create a custom control, i.e. my own drawing and everything inside it and not subclassing any existing control. I tried searching for any...
prakash8086
Offline Send Email
Mar 6, 2007
5:19 pm
14391
Depends on what kind of control, but typically if you want to change the behavior of a class, you would derive from that class' CxxxxImpl class. So if you...
Levi Wilson
skankwilsonite
Offline Send Email
Mar 6, 2007
5:35 pm
14392
It sounds like you are talking about creating a control based on CWindowImpl. This basically amounts to coding a Create method that does the initialization,...
Michael Stephenson
domehead100
Offline Send Email
Mar 6, 2007
7:05 pm
14393
There are a few ground-up controls (derived from CWindowImpl) in my WtlEx library. A very simple one is this one: ...
Roel
RoelVanhout
Offline Send Email
Mar 6, 2007
9:16 pm
14394
Thanks very much for this little gem, btw...it's always nice to see repositories like this one. ... [Non-text portions of this message have been removed]...
Levi Wilson
skankwilsonite
Offline Send Email
Mar 6, 2007
9:31 pm
14395
hello everyone ! I'm a novice programmer. Rescently ,i decide to program in WinCE. I used to program in PC Windows (VC6.0 & WTL) . i heard that WinCE doesn't...
shuaixh
Offline Send Email
Mar 7, 2007
1:40 am
14396
... STL support (and C++ in general) is not a matter of Windows CE but of a compiler you use. If you use eVC++ 3.0 or 4.0, then yes you can find some issues. ...
Mateusz Loskot
mateuszloskot
Offline Send Email
Mar 7, 2007
5:25 am
Messages 14367 - 14396 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