<?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 : Windows 7 causing issues</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Windows 7 causing issues]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 22 Apr 2026 06:38:03 +0000</pubDate>
  <lastBuildDate>Thu, 26 Mar 2009 05:35:40 +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=13799</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[Windows 7 causing issues : Also tried with first param still...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47171&amp;title=windows-7-causing-issues#47171</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2928">terrym</a><br /><strong>Subject:</strong> 13799<br /><strong>Posted:</strong> 26 March 2009 at 5:35am<br /><br />Also tried with first param still same issue, but as I said only with CSIDL_PRINTERS<DIV></DIV>]]>
   </description>
   <pubDate>Thu, 26 Mar 2009 05:35:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47171&amp;title=windows-7-causing-issues#47171</guid>
  </item> 
  <item>
   <title><![CDATA[Windows 7 causing issues : But strange thing is other CSIDL,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47164&amp;title=windows-7-causing-issues#47164</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2928">terrym</a><br /><strong>Subject:</strong> 13799<br /><strong>Posted:</strong> 26 March 2009 at 5:02am<br /><br />But strange thing is other CSIDL, eg. CSIDL_PROGRAMS works fine on Windows 7, it is just CSIDL_PRINTERS which is very strange.&nbsp; Could be a bug with Windows 7, as our code works on all OS's except this one.&nbsp; And the code as I said works fine with other CSIDL's just not the printer one.<DIV></DIV><DIV>&nbsp;</DIV><DIV>See Windows 7 has changed the way printers are stored by the looks of it, as it now has Devices and Printers instead of the old Printers</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 26 Mar 2009 05:02:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47164&amp;title=windows-7-causing-issues#47164</guid>
  </item> 
  <item>
   <title><![CDATA[Windows 7 causing issues : Hi,  Maybe Windows7 wants first...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47141&amp;title=windows-7-causing-issues#47141</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 13799<br /><strong>Posted:</strong> 26 March 2009 at 2:05am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Maybe Windows7 wants first parameter to EnumObjects - some window handle. Check if our Explorer sample works with Windows 7.</DIV>]]>
   </description>
   <pubDate>Thu, 26 Mar 2009 02:05:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47141&amp;title=windows-7-causing-issues#47141</guid>
  </item> 
  <item>
   <title><![CDATA[Windows 7 causing issues : The following code gives an error...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47103&amp;title=windows-7-causing-issues#47103</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2928">terrym</a><br /><strong>Subject:</strong> 13799<br /><strong>Posted:</strong> 25 March 2009 at 9:06am<br /><br /><P>The following code gives an error on Windows 7, but works fine on Windows Vista and below.&nbsp; Any ideas would be appreciated :(, there is more code to this but we broke it down to bare minimum so others can try to help us.</P><DIV>CComPtr&lt;IMalloc&gt; spIMalloc;<BR>HRESULT hResult = ::SHGetMalloc(&amp;spIMalloc);<BR>LPITEMIDLIST progFolder = NULL;<BR>hResult = ::SHGetSpecialFolderLocation(NULL, CSIDL_PRINTERS, &amp;progFolder );<BR>CComPtr&lt;IShellFolder&gt; spIShellFolder;<BR>CComPtr&lt;IShellFolder&gt; spFolderProgram;<BR>hResult = ::SHGetDesktopFolder(&amp;spIShellFolder);<BR>hResult = spIShellFolder-&gt;BindToObject(progFolder, NULL, IID_IShellFolder, (void **)&amp;spFolderProgram );<BR>CComPtr&lt;IEnumIDList&gt; spIEnumIDList;<BR>hResult = spFolderProgram-&gt;EnumObjects(NULL, SHCONTF_NONFOLDERS, &amp;spIEnumIDList );<BR>ULONG ulCount = 0;<BR>LPITEMIDLIST listNoFolder = NULL;<BR>hResult = spIEnumIDList-&gt;Next(1, &amp;listNoFolder, &amp;ulCount ); // hResult shows an error<BR>spIMalloc-&gt;Free(progFolder);</DIV><DIV>&nbsp;</DIV><DIV>Any help much appreciated<BR></DIV>]]>
   </description>
   <pubDate>Wed, 25 Mar 2009 09:06:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13799&amp;PID=47103&amp;title=windows-7-causing-issues#47103</guid>
  </item> 
 </channel>
</rss>