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...
14797
enjoy_yjh
Jul 2, 2007 5:00 am
... 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...
14798
carr
shuaixh
Jul 2, 2007 7:41 am
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...
14799
Angus Comber
anguscomber
Jul 2, 2007 8:38 pm
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...
14800
tom_gee
Jul 3, 2007 1:50 pm
You might need VS2005,which supports embedded application development and is supported by this add-in ... "MsgWizard.dll". It can help generate message map...
14801
Peter Carlson
strcarl813
Jul 4, 2007 7:48 pm
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...
14802
enjoy_yjh
Jul 5, 2007 1:56 pm
... 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...
14803
highdefinitionpc
highdefiniti...
Jul 5, 2007 7:07 pm
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...
14804
Peter Carlson
strcarl813
Jul 5, 2007 8:25 pm
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? ...
14805
Alain Rist
arnavpoch
Jul 5, 2007 10:37 pm
Hi, Extract CAppInfoBase from atlwince.h. It has nothing CE specific, and should be directly usable for your purpose. cheers, AR ... From: highdefinitionpc To:...
14806
carr
shuaixh
Jul 6, 2007 12:33 am
... 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...
14807
Ilker Aksen
octo_ian
Jul 6, 2007 9:19 am
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...
14808
Ken Wilson
kennethjames...
Jul 6, 2007 6:48 pm
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...
14809
write2rchandran
Jul 9, 2007 12:25 pm
Does wtl provide any support for wizard 97 and/or aero wizard thanks all...
14810
Maciej Rutkowski
maciej_rutko...
Jul 9, 2007 3:26 pm
Yes it does. Classes needed are in the atldlgs.h header. There's even a Wizard 97 test in samples. Enjoy WTL. :)...
14811
snrjrdn
Jul 10, 2007 12:24 pm
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...
14812
Nikos Bozinis
umeca74
Jul 13, 2007 12:47 pm
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 ...
14813
Jim Barry
jim_barry.geo
Jul 13, 2007 1:30 pm
... 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...
14814
Nikos Bozinis
umeca74
Jul 13, 2007 5:33 pm
... 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...
14815
carr
shuaixh
Jul 14, 2007 2:58 am
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...
14816
Alain Rist
arnavpoch
Jul 14, 2007 7:18 am
Hi, Replace SetScrollOffset() by MoveWindow() in http://www.codeproject.com/ce/ImageView.asp#tapscroll cheers, AR ... From: carr ˧ To: wtl@yahoogroups.com ...
14817
so_akatsuki
Jul 16, 2007 4:56 am
in CEditFindReplaceImpl::FindTextSimple() LPSTR lpch = (LPSTR)(lpsz + nLenFind); char chSave = *lpch; When _UNICODE is defined, this code cannot retrieve...
14818
enjoy_yjh
Jul 17, 2007 8:00 am
... than ... client ... a ... both ... is ... listen ... I've found a way to do this: DWORD style = GetStyle(); int xTrue = m_sizeClient.cx; int yTrue =...
14819
Daniel Bowen
newob_leinad
Jul 17, 2007 3:21 pm
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...
14820
so_akatsuki
Jul 17, 2007 4:17 pm
The same problem exists in MFC too. (I used Visual Studio 2005 and defined _UNICODE) Thanks. ... MFC ... for...
14821
Ken Wilson
kennethjames...
Jul 17, 2007 11:43 pm
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...
14822
avewtl
Jul 18, 2007 5:47 pm
Hi all, I have a customized static control class: template<class T, class TBase = CStatic, class TWinTraits = CControlWinTraits> class ATL_NO_VTABLE...
14823
Michael Stephenson
domehead100
Jul 18, 2007 7:59 pm
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...
14824
avewtl
Jul 19, 2007 1:29 am
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...
14825
domehead100@...
domehead100
Jul 19, 2007 3:31 am
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...