<?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[Need dev-c++ freak - einfache Sache ;)]]></title><description><![CDATA[<p>Zuerst einmal ein &quot;Hello World&quot; ins Forum... is der alt? Naja egal, hab vor wenigen Tagen mit C++ angefangen, weil mein Chef ne .exe gebraucht hat die mit IO arbeiten soll, und ich dachte mir Basic wird langsam gefährlich für Win7 xD<br />
Das Programm soll aus einem best. Ordner alle z.b. .txt Dateien auf ein bestimmtes Wort prüfen. Wird das gesuchte Wort gefunden kommt es in eine Excel Tabelle.<br />
Also ich hab im Netz gesucht und gesucht, aber immer nur häppchenweiße bekommen was ich wollte...bla und blub ihr wisst was dann, zamgekeilt bis alles auf einander abgestimmt ist, irgendwie <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> Das ganze Ding läuft soweit wie ichs mir vorstell, allerdings würde ich gerne wissen,da ich vermute, dass es so viel einfacher gehen würde ^^, was man verbessern kann. Ach was ich gerade bemerke, sorry wegen kommentarlosem code =(, und um methoden mit übergabeparameter und so würd ich mich rießig freuen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>gruß mexx</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;fstream&gt;
#include &lt;string&gt;
#include &lt;cstdlib&gt;
#include &lt;windows.h&gt;
#include &lt;dirent.h&gt;
#include &lt;sys/types.h&gt;
using namespace std;             //__________________________________//                                        
                                     //                                  //
int main()                          // --- ---  KONFIGURATION   --- --- //
{                                  //__________________________________//

  std::ofstream outfile(&quot;_Ausgabe2.xls&quot;); // Name: Ausgabedatei
  std::string folderPath = &quot;./&quot;;  // Folgenden Ordner durchsuchen  &lt;- &quot;./&quot; für aktuelles Verzeichnis 
  std::string files = &quot;.txt&quot;; // Durchsuche Ordner nach diesen Dateien (!! Endung !!)
  std::string findMe = &quot;hallo&quot;; // Durchsuche Dateien nach folgender Zeichenkette
  std::string strName;  

DIR *dir;
struct dirent *dirzeiger;

if((dir=opendir(folderPath.c_str())) != 0)
while((dirzeiger=readdir(dir)) != 0) 
 {

  strName = (&quot;%s\n&quot;,(*dirzeiger).d_name);

  if(strName.length()&gt;files.length()) 
  {
    int i = (strName.length()) - files.length();
    if( strName.substr(i, files.length()).compare(files.c_str())==0) 
    { 
      std::ifstream infile;                                                   
      infile.open(strName.c_str());
      if(infile)
      printf(&quot;%s\n&quot;,strName.c_str());
      std::string strLine;         
      while( std::getline(infile, strLine) )        
      {   
       int j = 0;   
       while ( j &lt; strLine.length() ) 
       {         
        if( strLine.substr(j, findMe.length()).compare(findMe.c_str())==0)
        {         
          outfile &lt;&lt; strLine.substr(0) &lt;&lt; &quot;\n&quot;; 
          j = strLine.length();           
        }
        j++; 
       }       
      }
       infile.close();
       outfile &lt;&lt; &quot;\n\n\n&quot;;
    }
  }   

 }       
   outfile.close();    
   system(&quot;PAUSE&quot;);
   return EXIT_SUCCESS;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/287287/need-dev-c-freak-einfache-sache</link><generator>RSS for Node</generator><lastBuildDate>Thu, 20 Aug 2026 13:02:16 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/287287.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 25 May 2011 18:49:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 18:54:45 GMT]]></title><description><![CDATA[<p>Zuerst einmal ein &quot;Hello World&quot; ins Forum... is der alt? Naja egal, hab vor wenigen Tagen mit C++ angefangen, weil mein Chef ne .exe gebraucht hat die mit IO arbeiten soll, und ich dachte mir Basic wird langsam gefährlich für Win7 xD<br />
Das Programm soll aus einem best. Ordner alle z.b. .txt Dateien auf ein bestimmtes Wort prüfen. Wird das gesuchte Wort gefunden kommt es in eine Excel Tabelle.<br />
Also ich hab im Netz gesucht und gesucht, aber immer nur häppchenweiße bekommen was ich wollte...bla und blub ihr wisst was dann, zamgekeilt bis alles auf einander abgestimmt ist, irgendwie <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> Das ganze Ding läuft soweit wie ichs mir vorstell, allerdings würde ich gerne wissen,da ich vermute, dass es so viel einfacher gehen würde ^^, was man verbessern kann. Ach was ich gerade bemerke, sorry wegen kommentarlosem code =(, und um methoden mit übergabeparameter und so würd ich mich rießig freuen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>gruß mexx</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;fstream&gt;
#include &lt;string&gt;
#include &lt;cstdlib&gt;
#include &lt;windows.h&gt;
#include &lt;dirent.h&gt;
#include &lt;sys/types.h&gt;
using namespace std;             //__________________________________//                                        
                                     //                                  //
int main()                          // --- ---  KONFIGURATION   --- --- //
{                                  //__________________________________//

  std::ofstream outfile(&quot;_Ausgabe2.xls&quot;); // Name: Ausgabedatei
  std::string folderPath = &quot;./&quot;;  // Folgenden Ordner durchsuchen  &lt;- &quot;./&quot; für aktuelles Verzeichnis 
  std::string files = &quot;.txt&quot;; // Durchsuche Ordner nach diesen Dateien (!! Endung !!)
  std::string findMe = &quot;hallo&quot;; // Durchsuche Dateien nach folgender Zeichenkette
  std::string strName;  

DIR *dir;
struct dirent *dirzeiger;

if((dir=opendir(folderPath.c_str())) != 0)
while((dirzeiger=readdir(dir)) != 0) 
 {

  strName = (&quot;%s\n&quot;,(*dirzeiger).d_name);

  if(strName.length()&gt;files.length()) 
  {
    int i = (strName.length()) - files.length();
    if( strName.substr(i, files.length()).compare(files.c_str())==0) 
    { 
      std::ifstream infile;                                                   
      infile.open(strName.c_str());
      if(infile)
      printf(&quot;%s\n&quot;,strName.c_str());
      std::string strLine;         
      while( std::getline(infile, strLine) )        
      {   
       int j = 0;   
       while ( j &lt; strLine.length() ) 
       {         
        if( strLine.substr(j, findMe.length()).compare(findMe.c_str())==0)
        {         
          outfile &lt;&lt; strLine.substr(0) &lt;&lt; &quot;\n&quot;; 
          j = strLine.length();           
        }
        j++; 
       }       
      }
       infile.close();
       outfile &lt;&lt; &quot;\n\n\n&quot;;
    }
  }   

 }       
   outfile.close();    
   system(&quot;PAUSE&quot;);
   return EXIT_SUCCESS;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2068673</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068673</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 18:54:45 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 18:54:25 GMT]]></title><description><![CDATA[<p>Was für ein grässlicher C/C++ Mix...<br />
Hast du gestern angefangen zu programmieren?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068676</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068676</guid><dc:creator><![CDATA[EOutOfResources]]></dc:creator><pubDate>Wed, 25 May 2011 18:54:25 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 18:53:54 GMT]]></title><description><![CDATA[<p>Ich würde dir raten, dir einmal boost anzusehen. Dort hast du Iteratoren für Files, die alles viel einfacher gestalten <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068678</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068678</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Wed, 25 May 2011 18:53:54 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 18:56:25 GMT]]></title><description><![CDATA[<p>nich gestern,vorgestern am montag ^^<br />
ich weiß selbst dass das übel ist, ich kenn den code in vielen andren sprachen,also sag mir lieber wie das ding kürzer läuft,bitte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title="=)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068682</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068682</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 18:56:25 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 18:58:21 GMT]]></title><description><![CDATA[<p>Verzeichnisstrukturen durchsuchen geht afaik nicht mit Standard-C++, zu dem Teil kann ich nichts sagen. Ich kenne nur die Windows-Variante mit FindFirstFile()/FindNextFile() - bei der könntest du sogar Suchfilter angeben und dir den Namensvergleich ersparen.</p>
<p>Aber die Vergleichstbedingungen sind imho ein wenig umständlich - std::string beherrscht auch Vergleiche mit == und Teilstring-Suche per find():</p>
<pre><code class="language-cpp">if( strName.substr(i, files.length()) == files.c_str() ) 
    { 
      std::ifstream infile;                                                   
      infile.open(strName.c_str());
      if(infile)
        printf(&quot;%s\n&quot;,strName.c_str());
      std::string strLine;         
      while( std::getline(infile, strLine) )        
      {   
        int j = 0;   
        if(strLine.find(findMe)!=string::npos)
        {         
          outfile &lt;&lt; strLine.substr(0) &lt;&lt; &quot;\n&quot;; 
        }
      }
      infile.close();
      outfile &lt;&lt; &quot;\n\n\n&quot;;
    }
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2068684</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068684</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 25 May 2011 18:58:21 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:02:34 GMT]]></title><description><![CDATA[<p>mexxville schrieb:</p>
<blockquote>
<p>also sag mir lieber wie das ding kürzer läuft,bitte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title="=)"
      alt="🙂"
    /></p>
</blockquote>
<p>Schau dir mal RAII, implizite Konvertierungen, Operator-Priorität, Namensbereiche, Codestil (vor allem Einrückungen), Konstruktoren/Destruktoren und die Standardbibliothek (das ist das Ding, dass du vergewaltigst) an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068687</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068687</guid><dc:creator><![CDATA[EOutOfResources]]></dc:creator><pubDate>Wed, 25 May 2011 19:02:34 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:05:18 GMT]]></title><description><![CDATA[<p>Wenn du mir sagst, wie ein xls File aufgebaut ist + was da jetzt genau hinein geschrieben werden muss, überleg ich mir vielleicht dir zu helfen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068690</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068690</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Wed, 25 May 2011 19:05:18 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:05:17 GMT]]></title><description><![CDATA[<p>Beides <code>using namespace std;</code> und <code>std::string</code> im Code geht schon mal nicht. Lösch lieber &quot;using ...&quot;. dirent.h mag ich nicht besonders, da man die dort verwendeten Funktionen sicherer und C++-näher selbst implementieren kann.</p>
<p>CStoll schrieb:</p>
<blockquote>
<p>Ich kenne nur die Windows-Variante mit FindFirstFile()/FindNextFile() - bei der könntest du sogar Suchfilter angeben und dir den Namensvergleich ersparen.</p>
</blockquote>
<p>Etwas Vernünftigeres gibt es auch nicht.</p>
<p>CStoll schrieb:</p>
<blockquote>
<p>Aber die Vergleichstbedingungen sind imho ein wenig umständlich - std::string beherrscht auch Vergleiche mit == und Teilstring-Suche per find():</p>
</blockquote>
<p>Lustigerweise bildet der ==-Vergleich den größten Angriffspunkt bei der Kritik.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068691</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068691</guid><dc:creator><![CDATA[*Rewind*]]></dc:creator><pubDate>Wed, 25 May 2011 19:05:17 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:07:44 GMT]]></title><description><![CDATA[<p>windows variante? sprich vc++? an und für sich brauch ich es sowieso nur unter windows ebene. wenn du nen code da ready hättest <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> meine pixel wärn bereit <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /> aber wenn nicht ne,mach dir keinen stress.<br />
für dem chef seine zwecke reicht es ^^ muss ja keine xxGB dateien verarbeiten wollte dennoch fragen wo man ressourcen sparen kann und naja, für den schrecken den ich jetzt jedem c/c++ coder eingejagt hab übernehm ich keine verantwortung xD</p>
<p>allerdings will ich noch sehen wie EOutOfResources das gecodet hätte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
du hast gesagt das ist mist,also zeig mir wies richtig geht,sonst hät ich wohl kaum dieses thema eröffnet und nach hilfe gebeten,bin hier um was zu lernen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>gruß mexx</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068695</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068695</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:07:44 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:19:36 GMT]]></title><description><![CDATA[<p>314159265358979 schrieb:</p>
<blockquote>
<p>Wenn du mir sagst, wie ein xls File aufgebaut ist + was da jetzt genau hinein geschrieben werden muss, überleg ich mir vielleicht dir zu helfen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
</blockquote>
<p>danke für diesen wertvollen kommentar ms.pi*g*<br />
das ist typisch nicht selbst denker <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_tongue"
      title=":P"
      alt="😛"
    /> ich hab einige parameter ausprobiert hat nicht geklappt,jetzt schreib ich halt ein vb script dazu.<br />
mussu halt nachdenken jungge xD</p>
<p>an alle andren danke <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068713</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068713</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:19:36 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:21:10 GMT]]></title><description><![CDATA[<p>Sagen wirs so, ich hab weder Lust, deinen hässlichen Code zu durchsuchen, noch deinen schlecht formulierten Beitrag <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068714</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068714</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Wed, 25 May 2011 19:21:10 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:28:15 GMT]]></title><description><![CDATA[<p>brauchst nicht den code zu durchsuchen,ein einfaches vb makro reicht,<br />
es soll von zeile a bis 'n' den Inhalt auslesen und in eine tabelle schreiben ( 'n' ist die erste Zeile ohne Inhalt,danach kommen nochmal zwei leere zeilen und dann soll er nen neues tabellenblatt erstellen und den nächsten block reinschreiben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068717</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068717</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:28:15 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:27:43 GMT]]></title><description><![CDATA[<p>Wie viel in der Stunde?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068718</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068718</guid><dc:creator><![CDATA[EOutOfResources]]></dc:creator><pubDate>Wed, 25 May 2011 19:27:43 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:31:21 GMT]]></title><description><![CDATA[<p>du bistn juter coder und frägst mich für sowas billiges nach nem stundenlohn??? xDDD nein danke,raus aus meinem haus -.- wer dafür über ne stunde braucht....</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068720</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068720</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:31:21 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:36:06 GMT]]></title><description><![CDATA[<p>mexxville schrieb:</p>
<blockquote>
<p>du bistn juter coder und frägst mich für sowas billiges nach nem stundenlohn???</p>
</blockquote>
<p>Sonst noch was? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /><br />
Du kannst mich natürlich auch für das Projekt mit 'nem fixen Preis bezahlen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068726</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068726</guid><dc:creator><![CDATA[EOutOfResources]]></dc:creator><pubDate>Wed, 25 May 2011 19:36:06 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:43:09 GMT]]></title><description><![CDATA[<p>EOutOfResources schrieb:</p>
<blockquote>
<p>mexxville schrieb:</p>
<blockquote>
<p>du bistn juter coder und frägst mich für sowas billiges nach nem stundenlohn???</p>
</blockquote>
<p>EOutOfResources schrieb:</p>
<blockquote>
<p>Sonst noch was? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /></p>
</blockquote>
<p>ja nu ich muss sagen da schwiez is schön <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_tongue"
      title=":P"
      alt="😛"
    /></p>
<p>EOutOfResources schrieb:</p>
<blockquote>
<p>Du kannst mich natürlich auch für das Projekt mit 'nem fixen Preis bezahlen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>Ja klare,wenn du mir zeigen würdest was du drauf hast hät ich vielleicht das ein oder andere für dich,es geht um so ne wawi software( oder wiso? ) warenwirtschaft halt. daten auslesen in datenbanken speichern usw( was ich weiß über ne normale com schnittstelle).<br />
kannst ja ma pm schreiben,jeder andre der was kann und bissl was verdienen will auch <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/2068732</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068732</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:43:09 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:49:49 GMT]]></title><description><![CDATA[<p>Also willst du das selber nicht mehr machen oder wie?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068738</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068738</guid><dc:creator><![CDATA[*Rewind*]]></dc:creator><pubDate>Wed, 25 May 2011 19:49:49 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:52:06 GMT]]></title><description><![CDATA[<p>[gelöscht] diese verdammte Verbindung</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068739</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068739</guid><dc:creator><![CDATA[*Rewind*]]></dc:creator><pubDate>Wed, 25 May 2011 19:52:06 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:52:51 GMT]]></title><description><![CDATA[<p>Sieht nicht danach aus - wenn du nichts anbietest, bekommst du hier nur Tipps, mit denen du deine Probleme selber lösen kannst. Wenn du fertige Programme benötigst, erwarten die meisten hier auch entsprechende Gegenleistungen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068743</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068743</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 25 May 2011 19:52:51 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:53:15 GMT]]></title><description><![CDATA[<p>na ich werd mich da dransetzen wenn ich bis morgen sonst nix hab,das muss erstma fertig werden <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> aber das mit der schnittstelle.. ^^ die zeit hab ich nich ^^</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068745</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068745</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:53:15 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:53:28 GMT]]></title><description><![CDATA[<p>[Rewind] schrieb:</p>
<blockquote>
<p>Also willst du das selber nicht mehr machen oder wie?</p>
</blockquote>
<p>Sieht stark danach aus: Auf provokante Art gratis zu Lösungen kommen:</p>
<p>mexxville schrieb:</p>
<blockquote>
<p>allerdings will ich noch sehen wie EOutOfResources das gecodet hätte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>mexxville schrieb:</p>
<blockquote>
<p>wer dafür über ne stunde braucht....</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/2068746</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068746</guid><dc:creator><![CDATA[EOutOfResources]]></dc:creator><pubDate>Wed, 25 May 2011 19:53:28 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:54:23 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/22303">@Rewind</a>:<br />
das is nur dein spoofer <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_tongue"
      title=":P"
      alt="😛"
    /><br />
:D:D</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068748</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068748</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:54:23 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:55:37 GMT]]></title><description><![CDATA[<p>EOutOfResources schrieb:</p>
<blockquote>
<p>[Rewind] schrieb:</p>
<blockquote>
<p>Also willst du das selber nicht mehr machen oder wie?</p>
</blockquote>
<p>Sieht stark danach aus: Auf provokante Art gratis zu Lösungen kommen:</p>
<p>mexxville schrieb:</p>
<blockquote>
<p>allerdings will ich noch sehen wie EOutOfResources das gecodet hätte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>mexxville schrieb:</p>
<blockquote>
<p>wer dafür über ne stunde braucht....</p>
</blockquote>
</blockquote>
<p>und weiter? xDD</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068750</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068750</guid><dc:creator><![CDATA[mexxville]]></dc:creator><pubDate>Wed, 25 May 2011 19:55:37 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 19:59:01 GMT]]></title><description><![CDATA[<p>mexxville schrieb:</p>
<blockquote>
<p>und weiter? xDD</p>
</blockquote>
<p>Das.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068754</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068754</guid><dc:creator><![CDATA[EOutOfResources]]></dc:creator><pubDate>Wed, 25 May 2011 19:59:01 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Wed, 25 May 2011 20:37:24 GMT]]></title><description><![CDATA[<p>Ich würde vorschlagen, eure sinnlose Diskussion zu beeenden, und beim Thema zu bleiben (diejenigen, die es nicht interessieren, haben tatsächlich(!) die Möglichkeit, nichts zu schreiben).</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/26121">@mexxville</a>: Wenn du die Wörter zur Weiterverarbeitung in Excel speichern möchtest, wäre das Einfachste für dich, sie im CSV-Format (steht für Comma-Separated Values) zu speichern. Ich denke das ist die bessere Alternative zum xls(x)-Format, da MS ziemlich genau auf das Format achtet. Und weil du jetzt sowieso schon die Hälfte der Arbeit in C(++) (&lt;- ja, das ist auch eine Sprache) gemacht hast, würde ich nicht anfangen, den Rest noch in VB zu machen. Wenn du eine Vorstellung haben willst, wie das ungefähr in C++ (MFC) aussehen könnte, schaust du <a href="http://www.a-m-i.de/tips/office/officeautomation.php#cppexample_Excel" rel="nofollow">hier</a> rein. Erstellung von CSV-Dateien ist recht einfach: mithilfe von C++ file streams erstellst und öffnest du eine Datei (logischerweise mit csv-Endung) und schreibst die Werte rein. Dabei verwendest Semikolon als Trennzeichen. Voilá!</p>
<pre><code class="language-cpp">...
CSVfile &lt;&lt; wert1 &lt;&lt; &quot;;&quot; &lt;&lt; wert2 &lt;&lt; ... &lt;&lt; endl; //kann sein, dass du am Ende &quot;\r\n&quot; schreiben musst
...
</code></pre>
<p>Das kannst du natürlich nicht machen, wenn du eine richtige Excel-Tabelle mit verschiedenen Sheets haben willst (da wäre die Frage auch, ob das unbedingt sein muss). Ein weiterer Vorteil dieses Format ist, dass Excel einige Berechnungen und Funktionen in der CSV-Datei unterstützt, d.h. du könntest in die Datei auch so etwas wie</p>
<blockquote>
<p>...;=B2+C2;...</p>
</blockquote>
<p>schreiben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068768</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068768</guid><dc:creator><![CDATA[*Rewind*]]></dc:creator><pubDate>Wed, 25 May 2011 20:37:24 GMT</pubDate></item><item><title><![CDATA[Reply to Need dev-c++ freak - einfache Sache ;) on Thu, 26 May 2011 05:12:33 GMT]]></title><description><![CDATA[<p>Haben diese Microsoft-Programmiertools nicht eine Excel-Schnittstelle an Bord?<br />
Oder gibt es das nur bei den käuflichen?</p>
<p>Beim Mitbewerber CA-Realizer war damals die xls-Schnittstelle dabei. Und Beispiele mit Tabellen und Grafiken auch. Aber das ist schon fast 15 Jahre her <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
CA-Realizer war nicht C++, aber die Schnittstelle könnte schon damit geschrieben worden sein.</p>
<p>Aber bei der Themenüberschrift:<br />
Need dev-c++ freak - einfache Sache <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2068823</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2068823</guid><dc:creator><![CDATA[f.-th.]]></dc:creator><pubDate>Thu, 26 May 2011 05:12:33 GMT</pubDate></item></channel></rss>