<?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[Problem mit Datentyp]]></title><description><![CDATA[<p>Hi Leute!</p>
<p>Kann mir einer von euch sagen warum mein Proggi abstürtzt wenn ich die Quelltextzeile</p>
<pre><code class="language-cpp">COLORREF rgb[700][500];
</code></pre>
<p>NICHT auskommentiere?</p>
<p>Danke Blind</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/49112/problem-mit-datentyp</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Apr 2026 03:43:17 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/49112.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 16 Sep 2003 10:13:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem mit Datentyp on Tue, 16 Sep 2003 10:13:46 GMT]]></title><description><![CDATA[<p>Hi Leute!</p>
<p>Kann mir einer von euch sagen warum mein Proggi abstürtzt wenn ich die Quelltextzeile</p>
<pre><code class="language-cpp">COLORREF rgb[700][500];
</code></pre>
<p>NICHT auskommentiere?</p>
<p>Danke Blind</p>
]]></description><link>https://www.c-plusplus.net/forum/post/354472</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/354472</guid><dc:creator><![CDATA[blind]]></dc:creator><pubDate>Tue, 16 Sep 2003 10:13:46 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Datentyp on Tue, 16 Sep 2003 10:43:57 GMT]]></title><description><![CDATA[<p>Ich glaub für den Stack sind 1,3 MB ein bissle groß. Erzeug das mal mit new.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/354488</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/354488</guid><dc:creator><![CDATA[Oliver]]></dc:creator><pubDate>Tue, 16 Sep 2003 10:43:57 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Datentyp on Tue, 16 Sep 2003 11:06:49 GMT]]></title><description><![CDATA[<p>Wie geht das mit new?</p>
<p>Habe</p>
<pre><code class="language-cpp">new COLORREF rgb[700][500];
</code></pre>
<p>als code Zeile und bekomme</p>
<pre><code>C:\Programme\The Imaging Source Europe GmbH\IC Imaging Control 1.4
\Firststep\FirststepView.cpp(200) : error C2146: Syntaxfehler : Fehlendes ';' 
vor Bezeichner 'rgb'
C:\Programme\The Imaging Source Europe GmbH\IC Imaging Control 1.4
\Firststep\FirststepView.cpp(200) : error C2065: 'rgb' : nichtdeklarierter 
Bezeichner
C:\Programme\The Imaging Source Europe GmbH\IC Imaging Control 1.4
\Firststep\FirststepView.cpp(200) : error C2109: Index benoetigt ein Feld oder 
einen Zeigertyp
C:\Programme\The Imaging Source Europe GmbH\IC Imaging Control 1.4
\Firststep\FirststepView.cpp(200) : error C2109: Index benoetigt ein Feld oder 
einen Zeigertyp
</code></pre>
<p>als Fehler für die Zeile.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/354496</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/354496</guid><dc:creator><![CDATA[blind]]></dc:creator><pubDate>Tue, 16 Sep 2003 11:06:49 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Datentyp on Tue, 16 Sep 2003 20:11:28 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">COLORREF* rgb = new COLORREF[700*500];
	// ...
	delete[] rgb;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/354942</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/354942</guid><dc:creator><![CDATA[Oliver]]></dc:creator><pubDate>Tue, 16 Sep 2003 20:11:28 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Datentyp on Wed, 17 Sep 2003 06:03:39 GMT]]></title><description><![CDATA[<p>Wie kann ich dem array jetzt eine x_Position und eine Y-Position zuweisen was ich ja mit[x][y] gemacht hatte [x*y] geht nicht da wenn x=1 und y=2 == x=2 und y=1 ist. in dem array steht dan der rgb wert für den punkt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/355025</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/355025</guid><dc:creator><![CDATA[blind]]></dc:creator><pubDate>Wed, 17 Sep 2003 06:03:39 GMT</pubDate></item></channel></rss>