<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[RoundRect mit transparenter Füllung...]]></title><description><![CDATA[<p>Kann mir mal jemand sagen, wie ich ein RoundRect(....) mit transparenter Füllung hinbekomme?<br />
Irgendwie bin ich dafür zu blöde...???????????????????</p>
<pre><code class="language-cpp">SelectObject(hdc, hPen);            
RoundRect(hdc, x, y, x2, y2 ,10 , 10 );
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/74932/roundrect-mit-transparenter-füllung</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 23:38:05 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/74932.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 25 May 2004 19:33:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to RoundRect mit transparenter Füllung... on Tue, 25 May 2004 19:35:44 GMT]]></title><description><![CDATA[<p>Kann mir mal jemand sagen, wie ich ein RoundRect(....) mit transparenter Füllung hinbekomme?<br />
Irgendwie bin ich dafür zu blöde...???????????????????</p>
<pre><code class="language-cpp">SelectObject(hdc, hPen);            
RoundRect(hdc, x, y, x2, y2 ,10 , 10 );
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/527217</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/527217</guid><dc:creator><![CDATA[AcidRay]]></dc:creator><pubDate>Tue, 25 May 2004 19:35:44 GMT</pubDate></item><item><title><![CDATA[Reply to RoundRect mit transparenter Füllung... on Tue, 25 May 2004 20:08:49 GMT]]></title><description><![CDATA[<p>Evtl. klappt es, wenn du vorher den NULL-Brush hineinselektierst?! Irgendwie so:</p>
<pre><code class="language-cpp">SelectObject(hdc, hPen);
HGDIOBJ hOldBrush = SelectObject(hdc,GetStockObject(NULL_BRUSH));
RoundRect(hdc, x, y, x2, y2 ,10 , 10 );
SelectObject(hdc,hOldBrush);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/527244</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/527244</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Tue, 25 May 2004 20:08:49 GMT</pubDate></item><item><title><![CDATA[Reply to RoundRect mit transparenter Füllung... on Wed, 26 May 2004 16:00:28 GMT]]></title><description><![CDATA[<p>speciall thx <a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/1644">@flenders</a>...<br />
hat wunderbar geklappt!</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/527795</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/527795</guid><dc:creator><![CDATA[AcidRay]]></dc:creator><pubDate>Wed, 26 May 2004 16:00:28 GMT</pubDate></item></channel></rss>