-
Fixed by adding:
#if (_ATL_VER >= 0x0900) && !defined(_SECURE_ATL)
#define _SECURE_ATL 1
#endif
to atlapp.h.
07:15AM UTC on Jun 24 2009 in Windows Template Library (WTL)
-
nenadstefanovic committed revision 400 to the Windows Template Library (WTL) SVN repository, changing 3 files.
07:13AM UTC on Jun 24 2009 in Windows Template Library (WTL)
-
VS2008 uses _SECURE_ATL code only, so we need to define _SECURE_ATL to 1 by default for our code that still checks for it.
07:12AM UTC on Jun 24 2009 in Windows Template Library (WTL)
-
Hi Sijmen,
I think that we fixed everything in SVN tree on SourceForge. Please replace all files with new ones, and be sure to run setup scripts again, since things changed there too.
Let us know if that works for you.
Cheers,
Nenad.
10:17AM UTC on Jun 22 2009 in Windows Template Library (WTL)
-
Fixed in atldlgs.h.
09:14PM UTC on Jun 21 2009 in Windows Template Library (WTL)
-
nenadstefanovic committed revision 396 to the Windows Template Library (WTL) SVN repository, changing 1 files.
09:12PM UTC on Jun 21 2009 in Windows Template Library (WTL)
-
From Yahoo WTL Group:
I found a small problem in the function "void SetOKText(LPCTSTR lpstrOKText)" at line #1533. I solved the problem replacing:
//::SendMessage(m_hWnd, BFFM_SETOKTEXT, (WPARAM)lpstr, 0L);
by:
::SendMessage(m_hWnd, BFFM_SETOKTEXT, 0, (LPARAM)lpstr);
at line #1541.
It works just fine now.
Philippe Marechal.
09:10PM UTC on Jun 21 2009 in Windows Template Library (WTL)
-
nenadstefanovic committed revision 395 to the Windows Template Library (WTL) SVN repository, changing 1 files.
09:54PM UTC on Jun 18 2009 in Windows Template Library (WTL)
-
nenadstefanovic committed revision 393 to the Windows Template Library (WTL) SVN repository, changing 3 files.
10:50AM UTC on Jun 17 2009 in Windows Template Library (WTL)
-
Hi Sijmen,
I looked into this and it seems that CLSID for the Platforms object in the Wizard changed for VS2008. We will update files to handle this.
If you want to make Wizards work right now, you can change lines with:
<OBJECT id="ProjWiz" classid="CLSID:D245F352-3F45-4516-B1E6-04608DA126CC" VIEWASTEXT>
to:
<OBJECT id="ProjWiz"...
09:37AM UTC on Jun 17 2009 in Windows Template Library (WTL)