<?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 : 32x32 Icons not transparent</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : 32x32 Icons not transparent]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 10:10:42 +0000</pubDate>
  <lastBuildDate>Tue, 28 Nov 2006 10:19:58 +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=5616</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[32x32 Icons not transparent : Indeed, I tried using some other...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17704&amp;title=32x32-icons-not-transparent#17704</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2498">Tsenoh</a><br /><strong>Subject:</strong> 5616<br /><strong>Posted:</strong> 28 November 2006 at 10:19am<br /><br />Indeed, I tried using some other icons and there was no problem. Strange thing though, because the first icons were properly displayed in VC++ 6.0 resource window (transparent area was pink).<br><br>Thanks!<br>]]>
   </description>
   <pubDate>Tue, 28 Nov 2006 10:19:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17704&amp;title=32x32-icons-not-transparent#17704</guid>
  </item> 
  <item>
   <title><![CDATA[32x32 Icons not transparent : Hello, Difficult to say without...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17665&amp;title=32x32-icons-not-transparent#17665</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 5616<br /><strong>Posted:</strong> 27 November 2006 at 11:52am<br /><br />Hello,<DIV>Difficult to say without debugging. Maybe problem in icons&nbsp; you have.</DIV>]]>
   </description>
   <pubDate>Mon, 27 Nov 2006 11:52:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17665&amp;title=32x32-icons-not-transparent#17665</guid>
  </item> 
  <item>
   <title><![CDATA[32x32 Icons not transparent : P.S. I am using XtreemeCommandBars...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17660&amp;title=32x32-icons-not-transparent#17660</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2498">Tsenoh</a><br /><strong>Subject:</strong> 5616<br /><strong>Posted:</strong> 27 November 2006 at 10:19am<br /><br />P.S. I am using XtreemeCommandBars 10.3.1 with VC++ 6.0 SP6 and Windows XP Home.]]>
   </description>
   <pubDate>Mon, 27 Nov 2006 10:19:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17660&amp;title=32x32-icons-not-transparent#17660</guid>
  </item> 
  <item>
   <title><![CDATA[32x32 Icons not transparent : Hi!I have a problem with dynamically...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17659&amp;title=32x32-icons-not-transparent#17659</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2498">Tsenoh</a><br /><strong>Subject:</strong> 5616<br /><strong>Posted:</strong> 27 November 2006 at 10:18am<br /><br />Hi!<br><br>I have a problem with dynamically created buttons in RibbonBar.<br><br>When I use 16x16 size icons (xtpButtonIconAndCaption) everything is fine. Problem occurs when I use 32x32 size icons (xtpButtonIconAndCaptionBelow). The transparent area of the icon is painted black.<br><br>Here is the code I use to create buttons:<br><br><blockquote><font face="Courier New, Courier, mono">pTab = m_pRibbonBar-&gt;FindTab(pElement-&gt;nInternalParameter1);</font><br><font face="Courier New, Courier, mono">pGroup = pTab-&gt;FindGroup(pElement-&gt;nInternalParameter2);</font><br><br><font face="Courier New, Courier, mono">CMyXTPControlButton* pControl = new (CMyXTPControlButton);</font><br><font face="Courier New, Courier, mono"> HICON hIcon = (HICON) LoadIcon(AfxGetInstanceHandle(),</font><br><font face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp; MAKEINTRESOURCE((UINT)pElement-&gt;dParameter1));</font><br><font face="Courier New, Courier, mono">pControl-&gt;SetCustomIcon(hIcon);</font><br><font face="Courier New, Courier, mono">pControl-&gt;SetTooltip(pElement-&gt;cToolTip);</font><br><font face="Courier New, Courier, mono">pControl-&gt;SetID(nElement);</font><br><font face="Courier New, Courier, mono">pControl-&gt;SetParentDialog(this);</font><br><font face="Courier New, Courier, mono">pControl-&gt;SetCaption(pElement-&gt;cName);</font><br><font face="Courier New, Courier, mono">pGroup-&gt;Add(pControl, nElement, pElement-&gt;cName);</font><br></blockquote><blockquote><br></blockquote>Any idea?<br><br>Thanks!<br>]]>
   </description>
   <pubDate>Mon, 27 Nov 2006 10:18:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5616&amp;PID=17659&amp;title=32x32-icons-not-transparent#17659</guid>
  </item> 
 </channel>
</rss>