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 14796 - 14825 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14796
Is there anything out there that can render a PDF (like ... Thanks Peter -- This message has been scanned for viruses and dangerous content by MailScanner, and...
Peter Carlson
strcarl813
Offline Send Email
Jul 2, 2007
2:32 am
14797
... develop a WTL database application and I just found samples for use OLE DB bind into CEdit controls. ... You can find WTLGrid.zip in the files section of...
enjoy_yjh
Offline Send Email
Jul 2, 2007
5:00 am
14798
once i found a WTL message map add-in on "codeproject" named "MsgWizard.dll". It can help generate message map handle codes in WTL style. it really works well...
carr 
shuaixh
Offline Send Email
Jul 2, 2007
7:41 am
14799
I personally agree that most Windows programmers don't need all the COM stuff. But then I suppose that WTL uses quite a lot of ATL so might be quite a job...
Angus Comber
anguscomber
Offline Send Email
Jul 2, 2007
8:38 pm
14800
You might need VS2005,which supports embedded application development and is supported by this add-in ... "MsgWizard.dll". It can help generate message map...
tom_gee
Offline Send Email
Jul 3, 2007
1:50 pm
14801
I have just recently encountered a serious WTL crash. It happens in VC2005 and WTL8 (not sure build #). I build a simple SDI app accepting all defaults from...
Peter Carlson
strcarl813
Offline Send Email
Jul 4, 2007
7:48 pm
14802
... development ... WTL ... EVC. ... Where can we find your "MsgWizard.dll" I only know there is a WTL helper at http://www.codeproject.com/macro/wtlhelper.asp...
enjoy_yjh
Offline Send Email
Jul 5, 2007
1:56 pm
14803
Hi, I have a dialog that is my initial window which have a checkbox. I want this checkbox to dictate of showing this initial window. So if it is checked, I...
highdefinitionpc
highdefiniti...
Offline Send Email
Jul 5, 2007
7:07 pm
14804
using Sergey Klimov's docking framework can anyone give me a pointer on how to create a vertical toolbar that can be docked on the right side of the window? ...
Peter Carlson
strcarl813
Offline Send Email
Jul 5, 2007
8:25 pm
14805
Hi, Extract CAppInfoBase from atlwince.h. It has nothing CE specific, and should be directly usable for your purpose. cheers, AR ... From: highdefinitionpc To:...
Alain Rist
arnavpoch
Offline Send Email
Jul 5, 2007
10:37 pm
14806
... Where can we find your "MsgWizard.dll" I only know there is a WTL helper at http://www.codeproject.com/macro/wtlhelper.asp you can find it here...
carr 
shuaixh
Offline Send Email
Jul 6, 2007
12:33 am
14807
Hi all, I need to use property pages on Smartphone. I remember that property pages do not use tabs but a listbox with numbered items instead. Is it supported...
Ilker Aksen
octo_ian
Offline Send Email
Jul 6, 2007
9:19 am
14808
First of all, thanks to Igor and Bruce for their patience with a newbie. Secondly, this has been resolved and I feel I should share the solution both for...
Ken Wilson
kennethjames...
Offline Send Email
Jul 6, 2007
6:48 pm
14809
Does wtl provide any support for wizard 97 and/or aero wizard thanks all...
write2rchandran
Offline Send Email
Jul 9, 2007
12:25 pm
14810
Yes it does. Classes needed are in the atldlgs.h header. There's even a Wizard 97 test in samples. Enjoy WTL. :)...
Maciej Rutkowski
maciej_rutko...
Offline Send Email
Jul 9, 2007
3:26 pm
14811
Is it still too early to be talking about Orcas support? :p I really like the VS2005 WTL app wizards but can't get the WTLMobile one to work in Orcas. The CE...
snrjrdn
Offline Send Email
Jul 10, 2007
12:24 pm
14812
Has anybody got this working for XP/Vista? For resizable dialogs it looks you either lose the close box, or you have a lame system menu icon on the top left ...
Nikos Bozinis
umeca74
Offline Send Email
Jul 13, 2007
12:47 pm
14813
... Hi Nikos, we worked around this Windows bug in WTL 8 by calling SetIcon(NULL, FALSE) in DlgResize_Init. Are you saying this isn't working for you? -- Jim...
Jim Barry
jim_barry.geo
Offline Send Email
Jul 13, 2007
1:30 pm
14814
... SetIcon(NULL, FALSE) in DlgResize_Init. Are you saying this isn't working for you? ... i'm still using wtl 7.1 :) anyway i got the source from 8.0 and the...
Nikos Bozinis
umeca74
Offline Send Email
Jul 13, 2007
5:33 pm
14815
To Move a window without caption , i usually handle "WM_NCHITTEST" and return "HTCAPTION" . it works on PC windows programming. but it seems that there's no...
carr 
shuaixh
Offline Send Email
Jul 14, 2007
2:58 am
14816
Hi, Replace SetScrollOffset() by MoveWindow() in http://www.codeproject.com/ce/ImageView.asp#tapscroll cheers, AR ... From: carr ˧ To: wtl@yahoogroups.com ...
Alain Rist
arnavpoch
Offline Send Email
Jul 14, 2007
7:18 am
14817
in CEditFindReplaceImpl::FindTextSimple() LPSTR lpch = (LPSTR)(lpsz + nLenFind); char chSave = *lpch; When _UNICODE is defined, this code cannot retrieve...
so_akatsuki
Offline Send Email
Jul 16, 2007
4:56 am
14818
... than ... client ... a ... both ... is ... listen ... I've found a way to do this: DWORD style = GetStyle(); int xTrue = m_sizeClient.cx; int yTrue =...
enjoy_yjh
Offline Send Email
Jul 17, 2007
8:00 am
14819
That's a good find. That part of the code is a port from MFC (from CEditView::FindText in viewedit.cpp). Do you know if CEditView in MFC suffers from the...
Daniel Bowen
newob_leinad
Offline Send Email
Jul 17, 2007
3:21 pm
14820
The same problem exists in MFC too. (I used Visual Studio 2005 and defined _UNICODE) Thanks. ... MFC ... for...
so_akatsuki
Offline Send Email
Jul 17, 2007
4:17 pm
14821
I am having some problem getting my head around the use of the unique identifier associated with a chained object and its message map. I will lay out the...
Ken Wilson
kennethjames...
Offline Send Email
Jul 17, 2007
11:43 pm
14822
Hi all, I have a customized static control class: template<class T, class TBase = CStatic, class TWinTraits = CControlWinTraits> class ATL_NO_VTABLE...
avewtl
Offline Send Email
Jul 18, 2007
5:47 pm
14823
I think you need to use DECLARE_WND_CLASS_EX instead of DECLARE_WND_SUPERCLASS if you want to specifiy window class styles. In DECLARE_WND_CLASS_EX, you...
Michael Stephenson
domehead100
Offline Send Email
Jul 18, 2007
7:59 pm
14824
Thanks for the info. If I'm not mistaken, the window class gets registered when Create() is called. The problem is, I never call Create() since...
avewtl
Offline Send Email
Jul 19, 2007
1:29 am
14825
Makes sense, though it's not apparent to me where ATL is calling RegisterClassEx and I'm too lazy at the moment to dig for it. Anyway, if this control exists...
domehead100@...
domehead100
Offline Send Email
Jul 19, 2007
3:31 am
Messages 14796 - 14825 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