-
Quote from MSDN:
http://msdn.microsoft.com/en-us/library/bb787305%28VS.85%29.aspx
"Returns the zero-based index for the button or -1 if the specified command identifier is invalid.".
2009-10-26 14:02:33 UTC by sraider
-
HitTest method should set content of integer pointed by pFlags to LVHT_ABOVE, LVHT_BELOW, LVHT_TOLEFT, and/or LVHT_TORIGHT when point to be tested is outside CListViewCtrl area. This is true on Windows XP. However, when the same code is run on Vista, flag is set to LVHT_NOWHERE, i.e. there is no indication that the point is outside control area.
Please note that when the same functionality is...
2009-10-24 15:06:03 UTC by jsribar
-
make that "...comment out the object statement for the VS2005 wizard"
(FWIW the preview window showed the angle brackets and quotes correctly. I wasn't expecting them to be replace with the XML entities when the reply was submitted...)
2009-10-16 15:00:44 UTC by cmconti
-
I think I've answered my own question: I though about the comment I made about VS2008 being the only VS ever installed, and edited the 4 WM htm and the platforms.htm file for CE to comment out the object statement for the VS2008 wizard:
replace:
<OBJECT id="ProjWiz" classid="CLSID:D245F352-3F45-4516-B1E6-04608DA126CC" VIEWASTEXT>
</OBJECT>
with...
2009-10-16 14:53:46 UTC by cmconti
-
I'm having the same issue:
WTL rev 404, XP SP3, VS2008 SP1 (with ATL security patch), .NET 3.5 SP1, IE8
(FWIW, this system has never had any VS other than 2008 installed)
The Desktop WTL Wizard runs and generates code fine
The CE WTL wizard runs and generates code as long as I never view the Platforms wizard page. If I do try to select the platforms page, the wizard evaporates, and I...
2009-10-16 13:47:22 UTC by cmconti
-
Hi,
See http://www.codeproject.com/KB/wtl/wtl4mfc2.aspx#uiupdating for CUpdateUI usage.
CUpdateUI Base uses WM_INITMENUPOPUP for its purpose, so if you have a handler for this message set bHandled to FALSE to allow processing in the chained message map.
cheers,
AR.
2009-09-19 16:54:36 UTC by arnavpoch
-
Worked it out.
I just had to use the "Download GNU Tarball" link.
Regards,
Sijmen.
2009-09-05 11:03:29 UTC by sijmeng
-
Hi,
It seems that the Source Forge site has changed, I can no longer see how to get the very latest checked in source. Does anyone know where I can get it from? (404 I think it is)
I don't want to have to go and manually download each file that was changed.
Regards,
Sijmen.
2009-09-05 09:55:55 UTC by sijmeng
-
Hi,
It seems that the Source Forge site has changed, I can no longer see how to get the very latest checked in source. Does anyone know where I can get it from? (404 I think it is)
I don't want to have to go and manually download each file that was changed.
Regards,
Sijmen.
2009-09-05 06:17:04 UTC by sijmeng
-
Yes, thanks.
I tried this way:
// buf here contains "Microsoft Windows XP\0"
str = buf;
str += CString(_T(" Build "));
And this worked well.
2009-09-04 04:05:30 UTC by olegkrivtsov