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...
... 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...
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...
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...
You might need VS2005,which supports embedded application development and is supported by this add-in ... "MsgWizard.dll". It can help generate message map...
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...
... 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...
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...
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? ...
Hi, Extract CAppInfoBase from atlwince.h. It has nothing CE specific, and should be directly usable for your purpose. cheers, AR ... From: highdefinitionpc To:...
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...
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...
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...
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 ...
... 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...
... 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...
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...
Hi, Replace SetScrollOffset() by MoveWindow() in http://www.codeproject.com/ce/ImageView.asp#tapscroll cheers, AR ... From: carr ˧ To: wtl@yahoogroups.com ...
in CEditFindReplaceImpl::FindTextSimple() LPSTR lpch = (LPSTR)(lpsz + nLenFind); char chSave = *lpch; When _UNICODE is defined, this code cannot retrieve...
... than ... client ... a ... both ... is ... listen ... I've found a way to do this: DWORD style = GetStyle(); int xTrue = m_sizeClient.cx; int yTrue =...
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...
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...
Hi all, I have a customized static control class: template<class T, class TBase = CStatic, class TWinTraits = CControlWinTraits> class ATL_NO_VTABLE...
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...
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...