<?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[Programm oprimieren]]></title><description><![CDATA[<p>So Leute...ich hab ein Programm geschrieben das über die Konsole verschiedene Programm öffnet. Allerdings ist die Syntax jetzt schon sehr unübersichtlich und sehr groß. Bräuchte eure Hilfe zum Optimieren.</p>
<p>Verbesserungs- und Änderungsvorschläge komme ich gerne entgegen, da ich sowieso weiß, dass man es auf jedenfall verbessern kann.</p>
<pre><code>#include &lt;iostream.h&gt;
#include &lt;conio.h&gt;
#ifdef _cplusplus // Überprüfen, ob ein C++-Compiler verwendet wird 
#include &lt;cstdlib&gt; // Wenn ja -&gt; cstdlib einbinden
#else // sonst 
#include &lt;stdlib.h&gt; // stdlib.h einbinden
#endif
#include &lt;stdlib.h&gt;

main()
{
   int pers, code, start, i;
   char antwort, pw1[4], pw1x[4]={'4','3','2','1'};
   cout&lt;&lt;&quot;			 Project Rien - Top Secret!\n&quot;;
   cout&lt;&lt;&quot;................................................................................\n&quot;;
   cout&lt;&lt;&quot;Weiter mit beliebiger Taste\n&quot;;
   getch();
   clrscr();
   cout&lt;&lt;&quot;Dieses Programm oeffnet eine Reihe von festgelegten Programmen.&quot;;
   cout&lt;&lt;&quot;Diese werden im weiteren Verlauf des Programmes aufgelistet.\n&quot;;
   cout&lt;&lt;&quot;Durch das Prinzip der Nummernauswahl, koennen Sie selbst bestimmen welches\n&quot;; 
   cout&lt;&lt;&quot;Programm ausgefuehrt werden soll.\n&quot;;
   cout&lt;&lt;&quot;\nWeiter mit beliebiger Taste&quot;;
   getch();
   clrscr();

   do
   {
   cout&lt;&lt;&quot;\nPersonalnummer: &quot;;
   cin&gt;&gt;pers;
   switch (pers)
   	{
        case 1234:	cout&lt;&lt;&quot;Passwort: &quot;;
                      for (i=0;i&lt;=4;i++)
                  	  {
                        pw1[i]=getch();
                        cout&lt;&lt;&quot;*&quot;;
                        }
                      cout&lt;&lt;endl;
      				if (pw1[0]==pw1x[0] &amp;&amp; pw1[1]==pw1x[1] &amp;&amp; pw1[2]==pw1x[2] &amp;&amp; pw1[3]==pw1x[3])
                    	{
      				  cout&lt;&lt;&quot;\nZugang gewaehrt. Weiter mit beliebiger Taste\n&quot;;
                        getch();;
                     	  do
                     	  {
                     	  cout&lt;&lt;&quot;\nDruecke 1 um ICQ zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 2 um MS Word zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 3 um MS Excel zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 4 um MS Access zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 5 um MS Powerpoint zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nAuswahl: &quot;;
		                   cin&gt;&gt;start;
                     		switch (start)
                     		   {
                        		case 1: system(&quot;\&quot;C:/Programme/ICQ6.5/icq.exe\&quot;&quot;);break;
                        		case 2: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/winword.exe\&quot;&quot;);break;
                        		case 3: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/excel.exe\&quot;&quot;);break;
                        		case 4: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/msaccess.exe\&quot;&quot;);break;
                        		case 5: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/powerpnt.exe\&quot;&quot;);break;
                        		default : cout&lt;&lt;&quot;\nNummer nicht vergeben\n&quot;;break;
                        		}
                     	  cout&lt;&lt;&quot;\nWollen Sie weiter machen, J oder N: &quot;;
                     	  cin&gt;&gt;antwort;
                     	  clrscr();
                     	  }
                     	  while (antwort=='j' || antwort=='J');
      				  }
      			   else
      					{
      					cout&lt;&lt;&quot;\nZugang verweigert\n&quot;;
      					}
                     break;
   	case 5678:  {
      			 cout&lt;&lt;&quot;Passwort: &quot;;
      			 cin&gt;&gt;code;
      			 if (code==8765)
      				{
      				cout&lt;&lt;&quot;\nZugang gewaehrt\n&quot;;
                      getch();
                        do
                        {
                        cout&lt;&lt;&quot;\nBeliebige Taste um CMD zu starten\n&quot;;
                        getch();
                        system(&quot;cmd.exe&quot;);
                        cout&lt;&lt;&quot;\nWollen Sie zurueck zur CMD, J oder N: &quot;;
                        cin&gt;&gt;antwort;
                        clrscr();
                        }
                        while (antwort=='j' || antwort=='J');
      			    }
      			  else
      				{
      				cout&lt;&lt;&quot;\nZugang verweigert&quot;;
                      }
                    }  break;
      default: cout&lt;&lt;&quot;\nKein Personal mit dieser Nummer gefunden!\n&quot;;
      getch();
      }
      cout&lt;&lt;&quot;\nWollen Sie vortfahren J oder N: &quot;;
      cin&gt;&gt;antwort;
      clrscr();
   }
   while	(antwort=='j' || antwort=='J');
}
</code></pre>
<p>Und ja, ich weiß es ist verdammt groß</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/253089/programm-oprimieren</link><generator>RSS for Node</generator><lastBuildDate>Mon, 14 Sep 2026 01:59:12 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/253089.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 28 Oct 2009 14:06:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 14:14:13 GMT]]></title><description><![CDATA[<p>So Leute...ich hab ein Programm geschrieben das über die Konsole verschiedene Programm öffnet. Allerdings ist die Syntax jetzt schon sehr unübersichtlich und sehr groß. Bräuchte eure Hilfe zum Optimieren.</p>
<p>Verbesserungs- und Änderungsvorschläge komme ich gerne entgegen, da ich sowieso weiß, dass man es auf jedenfall verbessern kann.</p>
<pre><code>#include &lt;iostream.h&gt;
#include &lt;conio.h&gt;
#ifdef _cplusplus // Überprüfen, ob ein C++-Compiler verwendet wird 
#include &lt;cstdlib&gt; // Wenn ja -&gt; cstdlib einbinden
#else // sonst 
#include &lt;stdlib.h&gt; // stdlib.h einbinden
#endif
#include &lt;stdlib.h&gt;

main()
{
   int pers, code, start, i;
   char antwort, pw1[4], pw1x[4]={'4','3','2','1'};
   cout&lt;&lt;&quot;			 Project Rien - Top Secret!\n&quot;;
   cout&lt;&lt;&quot;................................................................................\n&quot;;
   cout&lt;&lt;&quot;Weiter mit beliebiger Taste\n&quot;;
   getch();
   clrscr();
   cout&lt;&lt;&quot;Dieses Programm oeffnet eine Reihe von festgelegten Programmen.&quot;;
   cout&lt;&lt;&quot;Diese werden im weiteren Verlauf des Programmes aufgelistet.\n&quot;;
   cout&lt;&lt;&quot;Durch das Prinzip der Nummernauswahl, koennen Sie selbst bestimmen welches\n&quot;; 
   cout&lt;&lt;&quot;Programm ausgefuehrt werden soll.\n&quot;;
   cout&lt;&lt;&quot;\nWeiter mit beliebiger Taste&quot;;
   getch();
   clrscr();

   do
   {
   cout&lt;&lt;&quot;\nPersonalnummer: &quot;;
   cin&gt;&gt;pers;
   switch (pers)
   	{
        case 1234:	cout&lt;&lt;&quot;Passwort: &quot;;
                      for (i=0;i&lt;=4;i++)
                  	  {
                        pw1[i]=getch();
                        cout&lt;&lt;&quot;*&quot;;
                        }
                      cout&lt;&lt;endl;
      				if (pw1[0]==pw1x[0] &amp;&amp; pw1[1]==pw1x[1] &amp;&amp; pw1[2]==pw1x[2] &amp;&amp; pw1[3]==pw1x[3])
                    	{
      				  cout&lt;&lt;&quot;\nZugang gewaehrt. Weiter mit beliebiger Taste\n&quot;;
                        getch();;
                     	  do
                     	  {
                     	  cout&lt;&lt;&quot;\nDruecke 1 um ICQ zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 2 um MS Word zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 3 um MS Excel zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 4 um MS Access zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 5 um MS Powerpoint zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nAuswahl: &quot;;
		                   cin&gt;&gt;start;
                     		switch (start)
                     		   {
                        		case 1: system(&quot;\&quot;C:/Programme/ICQ6.5/icq.exe\&quot;&quot;);break;
                        		case 2: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/winword.exe\&quot;&quot;);break;
                        		case 3: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/excel.exe\&quot;&quot;);break;
                        		case 4: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/msaccess.exe\&quot;&quot;);break;
                        		case 5: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/powerpnt.exe\&quot;&quot;);break;
                        		default : cout&lt;&lt;&quot;\nNummer nicht vergeben\n&quot;;break;
                        		}
                     	  cout&lt;&lt;&quot;\nWollen Sie weiter machen, J oder N: &quot;;
                     	  cin&gt;&gt;antwort;
                     	  clrscr();
                     	  }
                     	  while (antwort=='j' || antwort=='J');
      				  }
      			   else
      					{
      					cout&lt;&lt;&quot;\nZugang verweigert\n&quot;;
      					}
                     break;
   	case 5678:  {
      			 cout&lt;&lt;&quot;Passwort: &quot;;
      			 cin&gt;&gt;code;
      			 if (code==8765)
      				{
      				cout&lt;&lt;&quot;\nZugang gewaehrt\n&quot;;
                      getch();
                        do
                        {
                        cout&lt;&lt;&quot;\nBeliebige Taste um CMD zu starten\n&quot;;
                        getch();
                        system(&quot;cmd.exe&quot;);
                        cout&lt;&lt;&quot;\nWollen Sie zurueck zur CMD, J oder N: &quot;;
                        cin&gt;&gt;antwort;
                        clrscr();
                        }
                        while (antwort=='j' || antwort=='J');
      			    }
      			  else
      				{
      				cout&lt;&lt;&quot;\nZugang verweigert&quot;;
                      }
                    }  break;
      default: cout&lt;&lt;&quot;\nKein Personal mit dieser Nummer gefunden!\n&quot;;
      getch();
      }
      cout&lt;&lt;&quot;\nWollen Sie vortfahren J oder N: &quot;;
      cin&gt;&gt;antwort;
      clrscr();
   }
   while	(antwort=='j' || antwort=='J');
}
</code></pre>
<p>Und ja, ich weiß es ist verdammt groß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799686</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799686</guid><dc:creator><![CDATA[Revils]]></dc:creator><pubDate>Wed, 28 Oct 2009 14:14:13 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 14:11:08 GMT]]></title><description><![CDATA[<p>Hallo,<br />
bitte benutze die cpp-Tags. Wie wäre es, wenn Du ein paar Funktionen machst und nicht alles gandenlos in die main reinschreibst? Wenn Längeres mit cout ausgeben willst, dann musst Du nicht jede Zeile neu &quot;cout&quot; schreiben. Du könntest auch ne ganze Klasse machen, die einfach dafür da ist, Programme zu starten. Beim Befehl &quot;system&quot; bin ich mir nicht ganz so sicher. Hab' gehört, dass der deprecated ist, aber ich will nichts falsches erzählen.</p>
<p>lg, freakC++</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799694</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799694</guid><dc:creator><![CDATA[freakC++]]></dc:creator><pubDate>Wed, 28 Oct 2009 14:11:08 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 14:17:13 GMT]]></title><description><![CDATA[<p>Ich weiß das &quot;System&quot; schon recht alt ist. Mittlerweile gehts auch nicht mehr da ich Win7 habe...CPP-Tags musste mir mal näher erklären</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799703</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799703</guid><dc:creator><![CDATA[Revils]]></dc:creator><pubDate>Wed, 28 Oct 2009 14:17:13 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 14:20:10 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;iostream.h&gt;      // Gibt es nicht, heißt bloß iostream
#include &lt;conio.h&gt;         // Ist plattformabhängig, aber das ist dir hoffentlich bewusst
#ifdef _cplusplus // Überprüfen, ob ein C++-Compiler verwendet wird 
#include &lt;cstdlib&gt; // Wenn ja -&gt; cstdlib einbinden
#else // sonst 
#include &lt;stdlib.h&gt; // stdlib.h einbinden
#endif
#include &lt;stdlib.h&gt;   // WTF? Wozu dann vorher die Abfrage? Und du brauchst sowieso einen C++ Compiler, von daher ist auch die Abfrage völlig sinnlos

main()   // Vollkommen illegal. Was für ein Compiler lässt denn sowas durchgehen? main muss immer int zurückgeben
{
   int pers, code, start, i;            // Es ist oft übersichtlicher, Variablen dort zu definieren, wo man sie auch braucht statt am Programmanfang
   char antwort, pw1[4], pw1x[4]={'4','3','2','1'};
   cout&lt;&lt;&quot;			 Project Rien - Top Secret!\n&quot;;
   cout&lt;&lt;&quot;................................................................................\n&quot;;
   cout&lt;&lt;&quot;Weiter mit beliebiger Taste\n&quot;;
   getch();          // Noch mehr plattformabhängiges Zeug
   clrscr();         // Noch mehr davon
   cout&lt;&lt;&quot;Dieses Programm oeffnet eine Reihe von festgelegten Programmen.&quot;;
   cout&lt;&lt;&quot;Diese werden im weiteren Verlauf des Programmes aufgelistet.\n&quot;;
   cout&lt;&lt;&quot;Durch das Prinzip der Nummernauswahl, koennen Sie selbst bestimmen welches\n&quot;; 
   cout&lt;&lt;&quot;Programm ausgefuehrt werden soll.\n&quot;;
   cout&lt;&lt;&quot;\nWeiter mit beliebiger Taste&quot;;
   getch();     // Siehe oben
   clrscr();    // Siehe oben, wird in Zukunft nicht mehr wiederholt

   do
   {
   cout&lt;&lt;&quot;\nPersonalnummer: &quot;;
   cin&gt;&gt;pers;
   switch (pers)
   	{
        case 1234:	cout&lt;&lt;&quot;Passwort: &quot;;
                      for (i=0;i&lt;=4;i++)
                  	  {
                        pw1[i]=getch();
                        cout&lt;&lt;&quot;*&quot;;
                        }
                      cout&lt;&lt;endl;
      				if (pw1[0]==pw1x[0] &amp;&amp; pw1[1]==pw1x[1] &amp;&amp; pw1[2]==pw1x[2] &amp;&amp; pw1[3]==pw1x[3])
                    	{
      				  cout&lt;&lt;&quot;\nZugang gewaehrt. Weiter mit beliebiger Taste\n&quot;;
                        getch();;
                     	  do
                     	  {
                     	  cout&lt;&lt;&quot;\nDruecke 1 um ICQ zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 2 um MS Word zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 3 um MS Excel zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 4 um MS Access zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nDruecke 5 um MS Powerpoint zu starten\n&quot;;
                     	  cout&lt;&lt;&quot;\nAuswahl: &quot;;
		                   cin&gt;&gt;start;
                     		switch (start)
                     		   {
                        		case 1: system(&quot;\&quot;C:/Programme/ICQ6.5/icq.exe\&quot;&quot;);break;  // Der Gipfel der Plattformabhängigkeit. Bisher waren das Programm schon auf Microsoft Betriebssysteme beschränkt. Nun läuft es wohl nur noch genau auf einem Rechner, nämlich deinem.
                        		case 2: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/winword.exe\&quot;&quot;);break;
                        		case 3: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/excel.exe\&quot;&quot;);break;
                        		case 4: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/msaccess.exe\&quot;&quot;);break;
                        		case 5: system(&quot;\&quot;C:/Programme/Microsoft Office/Office10/powerpnt.exe\&quot;&quot;);break;
                        		default : cout&lt;&lt;&quot;\nNummer nicht vergeben\n&quot;;break;
                        		}
                     	  cout&lt;&lt;&quot;\nWollen Sie weiter machen, J oder N: &quot;;
                     	  cin&gt;&gt;antwort;
                     	  clrscr();
                     	  }
                     	  while (antwort=='j' || antwort=='J');
      					}
      				else
      					{
      					cout&lt;&lt;&quot;\nZugang verweigert\n&quot;;
      					}
                     break;
   	case 5678:  {
      				cout&lt;&lt;&quot;Passwort: &quot;;
      				cin&gt;&gt;code;
      				if (code==8765)
      					{
      					cout&lt;&lt;&quot;\nZugang gewaehrt\n&quot;;
                     getch();
                     do
                     {
                     cout&lt;&lt;&quot;\nBeliebige Taste um CMD zu starten\n&quot;;
                     getch();
                     system(&quot;cmd.exe&quot;);
                     cout&lt;&lt;&quot;\nWollen Sie zurueck zur CMD, J oder N: &quot;;
                     cin&gt;&gt;antwort;
                     clrscr();
                     }
                     while (antwort=='j' || antwort=='J');
      					}
      				else
      					{
      					cout&lt;&lt;&quot;\nZugang verweigert&quot;;
                     }
                  }  break;
      default: cout&lt;&lt;&quot;\nKein Personal mit dieser Nummer gefunden!\n&quot;;
      getch();
      }
      cout&lt;&lt;&quot;\nWollen Sie vortfahren J oder N: &quot;;
      cin&gt;&gt;antwort;
      clrscr();
   }
   while	(antwort=='j' || antwort=='J');
}
</code></pre>
<p>Das sind ein paar Sachen die mir als fehlerhaft aufgefallen sind.</p>
<p>Was die Optimierung angeht. Das ganze Programm ist sehr statisch und unflexibel geschrieben. Das kann man nicht einfach durch ein paar Änderungen verbessern, da müsste ein ganz anderes Konzept her und alles neu geschrieben werden um das zu verbessern.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799705</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799705</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Wed, 28 Oct 2009 14:20:10 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 14:21:56 GMT]]></title><description><![CDATA[<p>Revils schrieb:</p>
<blockquote>
<p>Ich weiß das &quot;System&quot; schon recht alt ist. Mittlerweile gehts auch nicht mehr da ich Win7 habe...CPP-Tags musste mir mal näher erklären</p>
</blockquote>
<p>Es geht bei &quot;system&quot; nicht um das Alter des Befehls. Es geht darum, dass dein Programm auf genau einem Rechner funktionieren wird. Deinem. Und das auch nur so lange wie du keinerlei Änderungen an deinem System durchführst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799707</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799707</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Wed, 28 Oct 2009 14:21:56 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 15:22:48 GMT]]></title><description><![CDATA[<p>Genau das weiß ich. Die Sytanx war mehr oder weniger auch nur ein Gedanke. Das Problem allerdings mit dem Deklariere...naj, ich habs so in der Schule &quot;gelernt&quot;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799759</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799759</guid><dc:creator><![CDATA[Revils]]></dc:creator><pubDate>Wed, 28 Oct 2009 15:22:48 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 16:43:49 GMT]]></title><description><![CDATA[<p>Revils schrieb:</p>
<blockquote>
<p>Ich weiß das &quot;System&quot; schon recht alt ist. Mittlerweile gehts auch nicht mehr da ich Win7 habe...CPP-Tags musste mir mal näher erklären</p>
</blockquote>
<p>funzt die system() funktion unter windows7 nicht?</p>
<p>das mit den switch/case dingers kannst du stark abkürzen.<br />
so in der art:</p>
<pre><code class="language-cpp">char* apps[] = { &quot;explorer.exe&quot;, &quot;notepad.exe&quot;, NULL };
int index_max = sizeof (apps) / sizeof (char*) - 2;

void show_apps()
{
	int i = 0;
	while (apps[i])
	{
		printf(&quot;%d %s\n&quot;, i, apps[i] );
		i++;
	}
}

unsigned index_input()
{
	unsigned number = 1;
	// To be written ...
	return number;
}

int main()
{
	assert ( index_max &gt;=0 );
	show_apps();

	int index = index_input();
         // no switch case necessary
	system ( apps[index] );

	return 0;
}
</code></pre>
<p>kann ja auch sein, das der benutzer notepad, etc deinstalliert hat.<br />
das wäre vorher zu prüfen.<br />
bei nicht-system-programmen kann man den pfad aus der registry etc. bekommen.</p>
<p>gru-huß,<br />
a.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799819</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799819</guid><dc:creator><![CDATA[abcok]]></dc:creator><pubDate>Wed, 28 Oct 2009 16:43:49 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 18:12:06 GMT]]></title><description><![CDATA[<p>Also das Programm ist ja nur ein Grundgedanke. Was ich später vorhabe ist, dass eder Benutzer durch eine Auswahl wie oben 1 - ... Programme auswählen und starten kann. Und fals diese nicht vorhanden sind, soll das Programm diese installieren.</p>
<p>Hatte vorgehabt das mit dem Builder zu machen, habe aber keinen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799858</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799858</guid><dc:creator><![CDATA[Revils]]></dc:creator><pubDate>Wed, 28 Oct 2009 18:12:06 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 18:52:23 GMT]]></title><description><![CDATA[<p>jepp. meins auch grundgedanke ist. switch/case einspar grundgedanke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799889</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799889</guid><dc:creator><![CDATA[abcok]]></dc:creator><pubDate>Wed, 28 Oct 2009 18:52:23 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 19:36:00 GMT]]></title><description><![CDATA[<p>Revils schrieb:</p>
<blockquote>
<p>Programm oprimieren</p>
</blockquote>
<p>Ist das was schlimmes?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799911</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799911</guid><dc:creator><![CDATA[ohrimir]]></dc:creator><pubDate>Wed, 28 Oct 2009 19:36:00 GMT</pubDate></item><item><title><![CDATA[Reply to Programm oprimieren on Wed, 28 Oct 2009 20:04:20 GMT]]></title><description><![CDATA[<p>Ne^^ Sollte &quot;optimieren&quot; heißen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1799925</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1799925</guid><dc:creator><![CDATA[Revils]]></dc:creator><pubDate>Wed, 28 Oct 2009 20:04:20 GMT</pubDate></item></channel></rss>