<?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[&amp;gt;array hilfe]]></title><description><![CDATA[<p>moin,</p>
<p>kann mir jemand helfen warum in meinen programm bei</p>
<p>CStringArray bla;<br />
bla.SetSize(3);<br />
bla.SetAt(0,&quot;<a href="http://0.Name" rel="nofollow">0.Name</a>&quot;);<br />
bla.SetAt(1,&quot;<a href="http://1.Name" rel="nofollow">1.Name</a>&quot;);<br />
bla.SetAt(2,&quot;<a href="http://2.Name" rel="nofollow">2.Name</a>&quot;);</p>
<p>beim kompliemieren der fehler kommt:<br />
error C2143: Syntaxfehler : Es fehlt ';' vor '.'</p>
<p>in einer void funktion geht das wunderbar nur nicht wenn der array außerhalb einer solchen steht.</p>
<p>-oder einer einen tipp geben wie ich stattdessen einen array global verfügbar machen kann.</p>
<p>mfg blacka6</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/47246/gt-array-hilfe</link><generator>RSS for Node</generator><lastBuildDate>Mon, 27 Apr 2026 10:41:35 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/47246.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 27 Aug 2003 18:07:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &amp;gt;array hilfe on Wed, 27 Aug 2003 18:07:03 GMT]]></title><description><![CDATA[<p>moin,</p>
<p>kann mir jemand helfen warum in meinen programm bei</p>
<p>CStringArray bla;<br />
bla.SetSize(3);<br />
bla.SetAt(0,&quot;<a href="http://0.Name" rel="nofollow">0.Name</a>&quot;);<br />
bla.SetAt(1,&quot;<a href="http://1.Name" rel="nofollow">1.Name</a>&quot;);<br />
bla.SetAt(2,&quot;<a href="http://2.Name" rel="nofollow">2.Name</a>&quot;);</p>
<p>beim kompliemieren der fehler kommt:<br />
error C2143: Syntaxfehler : Es fehlt ';' vor '.'</p>
<p>in einer void funktion geht das wunderbar nur nicht wenn der array außerhalb einer solchen steht.</p>
<p>-oder einer einen tipp geben wie ich stattdessen einen array global verfügbar machen kann.</p>
<p>mfg blacka6</p>
]]></description><link>https://www.c-plusplus.net/forum/post/341889</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/341889</guid><dc:creator><![CDATA[blacka6]]></dc:creator><pubDate>Wed, 27 Aug 2003 18:07:03 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;gt;array hilfe on Wed, 27 Aug 2003 18:10:04 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">CStringArray bla; 

void foo()
{
 bla.SetSize(3); 
 bla.SetAt(0,&quot;0.Name&quot;); 
 bla.SetAt(1,&quot;1.Name&quot;); 
 bla.SetAt(2,&quot;2.Name&quot;); 
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/341893</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/341893</guid><dc:creator><![CDATA[Knuddlbaer]]></dc:creator><pubDate>Wed, 27 Aug 2003 18:10:04 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;gt;array hilfe on Wed, 27 Aug 2003 18:23:00 GMT]]></title><description><![CDATA[<p>jetzt stürzt das prog beim laufen ab, wenn es auf den array zugreift</p>
]]></description><link>https://www.c-plusplus.net/forum/post/341912</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/341912</guid><dc:creator><![CDATA[blacka6]]></dc:creator><pubDate>Wed, 27 Aug 2003 18:23:00 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;gt;array hilfe on Wed, 27 Aug 2003 22:06:57 GMT]]></title><description><![CDATA[<p>Hi!<br />
Fench Post Error?</p>
<pre><code class="language-cpp">CStringArray bla;  

 bla.SetSize(3);  
 bla.SetAt(0,&quot;0.Name&quot;);  
 bla.SetAt(1,&quot;1.Name&quot;);  
 bla.SetAt(2,&quot;2.Name&quot;);  

 AfxMessageBox(bla.GetAt(0)); //0,1,2
</code></pre>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/342064</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/342064</guid><dc:creator><![CDATA[mike84]]></dc:creator><pubDate>Wed, 27 Aug 2003 22:06:57 GMT</pubDate></item></channel></rss>