CListViewCtrl::GetSubItemRect() has an assertion: ATLASSERT((GetStyle() & LVS_TYPEMASK) == LVS_REPORT); This always fails in my case: my custom listview...
... [snip] Hey, I tried your .zip. Then when I try to create a new WTL mobile project, there's a popup that says "No such interface supported". Do I need to...
Hi all, I'd like to display an Up Arrow (¡ü) character in my context menu. However, this ¡ücharacter is not defined in the default font (Tahoma). Although...
Ponder the following code, if you define USE_SUPERCLASS to 1 or 0, the result is the same, that is, the edit control is superclassed. What is the difference...
Exactly what Unicode code point are you trying to insert in the menu? The Unicode "Up arrow" has code point U+2191. The safest way to include that character in...
... Since Visual Studio 2005, finally you can use Unicode resource files. Just open the .rc file as text in VS, choose "Save As", "Save with Encoding" from the...
... Nothing. If you examine DECLARE_WND_SUPERCLASS, you'll see that it sets m_lpszOrigName to the second macro parameter. DECLARE_WND_CLASS sets m_lpszOrigName...
... There is a couple of helper functions in the ATL library (atlwin.h; see AtlGetDialogSize()) which will calculate the client-area. You need to load the...
We are considering building a specialized PIM/Organizer application. Basically, we want to structure the application much like a simplified web or HTML editor....
... So, you are basically making a lightweight version of Info Select: http://www.miclog.com/is/index.shtml I've never had a need for a PIM, but I've always...
i would do something like this CAxWindow wnd; wnd.Create("mshtl:<html>etc</html>"); CComPtr<IHTMLDocument2> sp; // after document is loaded, probably ...
... Hmmm. Can't say, to be honest. I'd be surprised if reinstalling would help, it's more likely my machine has something set up to allow it to work that yours...
... I was able to fix it by manually cleaning out the generated files in vcprojects, and correcting the WTLMobile.vsz to use the 9.0 VsWizard engine....
red View profile More options Feb 6, 10:25 pm Newsgroups: microsoft.public.vc.atl From: red <chenbin...@...> Date: Wed, 6 Feb 2008 03:25:04 -0800 (PST) ...
... Please let us know if you arrive at a solution. I haven't played around with it other than a brief look, but I think you might be onto something regarding...
I have a WTL 8.0 application that uses a tab view and I use the dialog editor for each of the tab pages. These pages resize using the CDialogResize class. ...
... Hi Dick, The usual appproach for custom controls on dialogs is to put some control on the dialog, typically a static control, give it the control ID you...
... A long time ago I had the same problem and wrote this: http://www.viksoe.dk/code/splitterbar.htm It was a long time ago, so I'm not entirely sure it works...
"Using the "static control as host"-trick as mentioned before renders CDialogResize useless." Actually I don't think it does. The dialog resize map is based...
Should you not wait the OnLoad event of the window object ? Its just a guess. Also i added two comments to your code, but they were probably just "typo" ... //...
Thanks for the reply. My Up Arrow is indeed U+2191. I see no ¡ü character in my Tahoma font according to the mentioned charmap usage. So I decided to adopt...
Is this cracker correct: // void OnCommandIDHandlerEX(UINT uNotifyCode, int nID, CWindow wndCtl) #define COMMAND_ID_HANDLER_EX(id, func) \ if (uMsg ==...