<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Problem with SHGetFolderPath and Xtreme Toolkit</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Problem with SHGetFolderPath and Xtreme Toolkit]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 27 May 2026 00:11:31 +0000</pubDate>
  <lastBuildDate>Thu, 15 Feb 2007 11:20:02 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=6433</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Problem with SHGetFolderPath and Xtreme Toolkit : Hi Oleg,Thanks, now its working......]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6433&amp;PID=20484&amp;title=problem-with-shgetfolderpath-and-xtreme-toolkit#20484</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2689">aimslife</a><br /><strong>Subject:</strong> 6433<br /><strong>Posted:</strong> 15 February 2007 at 11:20am<br /><br />Hi <font face="Verdana, Arial, Helvetica, sans-serif">Oleg,<br><br>Thanks, now its working... the problem related to _WIN32_IE macro... some how when we made SDI application with Xtreme Toolkit, it generates _WIN32_IE macro code with 0x0400 value... thats way SHGetFolderPath() function was not working...<br><br>Thanks Oleg...<br><br></font>]]>
   </description>
   <pubDate>Thu, 15 Feb 2007 11:20:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6433&amp;PID=20484&amp;title=problem-with-shgetfolderpath-and-xtreme-toolkit#20484</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with SHGetFolderPath and Xtreme Toolkit : Hi,  Add to your stdafx.h:  #if...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6433&amp;PID=20477&amp;title=problem-with-shgetfolderpath-and-xtreme-toolkit#20477</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6433<br /><strong>Posted:</strong> 15 February 2007 at 11:08am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Add to your stdafx.h:</DIV><DIV>&nbsp;</DIV><DIV>#if _MSC_VER &gt; 1200</DIV><DIV>// Modify the following defines if you have to target a platform prior to the ones specified below.<BR>// Refer to MSDN for the latest info on corresponding values for different platforms.<BR>#ifndef WINVER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Allow use of features specific to Windows 95 and Windows NT 4 or later.<BR>#define WINVER 0x0400&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.<BR>#endif</DIV><DIV>#ifndef _WIN32_WINNT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Allow use of features specific to Windows NT 4 or later.<BR>#define _WIN32_WINNT 0x0400&nbsp;&nbsp;&nbsp;&nbsp; // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.<BR>#endif</DIV><DIV>#ifndef _WIN32_WINDOWS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Allow use of features specific to Windows 98 or later.<BR>#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.<BR>#endif</DIV><DIV>#ifndef _WIN32_IE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Allow use of features specific to IE 4.0 or later.<BR>#define _WIN32_IE 0x0500&nbsp;&nbsp;&nbsp; // Change this to the appropriate value to target IE 5.0 or later.<BR>#endif</DIV><DIV>#endif<BR></DIV>]]>
   </description>
   <pubDate>Thu, 15 Feb 2007 11:08:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6433&amp;PID=20477&amp;title=problem-with-shgetfolderpath-and-xtreme-toolkit#20477</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with SHGetFolderPath and Xtreme Toolkit : Hi,i made a SDI application in...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6433&amp;PID=20476&amp;title=problem-with-shgetfolderpath-and-xtreme-toolkit#20476</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2689">aimslife</a><br /><strong>Subject:</strong> 6433<br /><strong>Posted:</strong> 15 February 2007 at 10:57am<br /><br />Hi,<br><br>i made a SDI application in vs2k5. In view class i tried to use SHGetFolderPath() function and include shlobj.h header files on the top.. but some how it is not working and in shlobj.h header file few lines of code are dimmed out<br><br>#ifndef _WINRESRC_<br>#ifndef _WIN32_IE<br>#define _WIN32_IE 0x0501 &lt;&lt;&lt; this line is dimmed/grayed like<br>#else<br>#if (_WIN32_IE &lt; 0x0400) &amp;&amp; defined(_WIN32_WINNT) &amp;&amp; (_WIN32_WINNT &gt;= 0x0500)<br>#error _WIN32_IE setting conflicts with _WIN32_WINNT setting<br>#endif<br>#endif<br><br>but when i tried to use SHGetFolderPath() function in any sample project of Xtreme Toolkit, then its works fine and no problem comes with it... i made all project settings as like in sample project but still SHGetFolderPath() function is not found... i made Standard MFC SDI application to test this function, either SHGetFolderPath() function  working or not... but it was working fine... please guide me, what to do solve this problem??? is this problem related to Xtreme Toolkit Api's that wheneven I include its libs and headers the SHGetFolderPath() stops working.<br><br>]]>
   </description>
   <pubDate>Thu, 15 Feb 2007 10:57:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6433&amp;PID=20476&amp;title=problem-with-shgetfolderpath-and-xtreme-toolkit#20476</guid>
  </item> 
 </channel>
</rss>