<?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[wenn bla.exe nicht geöffnet --&amp;gt; öffnen]]></title><description><![CDATA[<p>Hi,<br />
Ja, ich möchte mir ein Program schreiben was rausfindet ob eine bestimmte Anwendung(.exe) gerade läuft und falls das NICHT der Fall ist das diese Anwendung gestartet wird. Oder besser, wenn die Betreffende Anwendung durch Absturz oder ähnl. beendet wurde automatisch wieder gestartet wird?<br />
Wie lässt sich das realisieren?<br />
// Hab leider 0 Plan von winApi <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<p>Danke und Tschö</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/63445/wenn-bla-exe-nicht-geöffnet-gt-öffnen</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Jul 2026 18:09:07 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/63445.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 01 Feb 2004 22:09:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Sun, 01 Feb 2004 22:09:14 GMT]]></title><description><![CDATA[<p>Hi,<br />
Ja, ich möchte mir ein Program schreiben was rausfindet ob eine bestimmte Anwendung(.exe) gerade läuft und falls das NICHT der Fall ist das diese Anwendung gestartet wird. Oder besser, wenn die Betreffende Anwendung durch Absturz oder ähnl. beendet wurde automatisch wieder gestartet wird?<br />
Wie lässt sich das realisieren?<br />
// Hab leider 0 Plan von winApi <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<p>Danke und Tschö</p>
]]></description><link>https://www.c-plusplus.net/forum/post/449232</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449232</guid><dc:creator><![CDATA[Falky]]></dc:creator><pubDate>Sun, 01 Feb 2004 22:09:14 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Sun, 01 Feb 2004 23:42:57 GMT]]></title><description><![CDATA[<p>schau mal hier:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt; 
#include &lt;tlhelp32.h&gt; 

int main() 
{ 
 HANDLE snapshot; 
 PROCESSENTRY32 pe; 
 snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL); 
 pe.dwSize=sizeof(pe); //prozessor gr??e 32 oder 64bit

 if(Process32First(snapshot, &amp;pe)) 
 { 
  do 
  { 
   prinf(“%s”,pe.szExeFile); 
   }while(Process32Next(snapshot,&amp;pe)); 
 } 
CloseHandle(snapshot); 
return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/449300</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449300</guid><dc:creator><![CDATA[Petr1]]></dc:creator><pubDate>Sun, 01 Feb 2004 23:42:57 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Sun, 01 Feb 2004 23:48:33 GMT]]></title><description><![CDATA[<p>Unter NT/XP/2000 geht das auch mit EnumProcesses().</p>
]]></description><link>https://www.c-plusplus.net/forum/post/449303</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449303</guid><dc:creator><![CDATA[WebFritzi]]></dc:creator><pubDate>Sun, 01 Feb 2004 23:48:33 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Sun, 01 Feb 2004 23:59:26 GMT]]></title><description><![CDATA[<p>Petr1 schrieb:</p>
<blockquote>
<p>schau mal hier:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt; 
#include &lt;tlhelp32.h&gt; 

int main() 
{ 
 HANDLE snapshot; 
 PROCESSENTRY32 pe; 
 snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL); 
 pe.dwSize=sizeof(pe); //prozessor gr??e 32 oder 64bit

 if(Process32First(snapshot, &amp;pe)) 
 { 
  do 
  { 
   prinf(?%s?,pe.szExeFile); 
   }while(Process32Next(snapshot,&amp;pe)); 
 } 
CloseHandle(snapshot); 
return 0;
}
</code></pre>
</blockquote>
<p>Lässt sich leider nicht kompilieren <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /><br />
snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL); &lt;-- die Zeile gefällt ihm nicht :((<br />
Wenn das Programm so relativ &quot;einfach&quot; ist, kannst du es evtl. zur Vollendung/.exe bringe?<br />
Wäre wirklich nett!<br />
danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/449315</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449315</guid><dc:creator><![CDATA[Falky]]></dc:creator><pubDate>Sun, 01 Feb 2004 23:59:26 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 01:27:08 GMT]]></title><description><![CDATA[<p>Du musst dazu eine Header-Datei einbinden. Schau in der MSDN nach, welche dafür erforderlich ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/449346</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449346</guid><dc:creator><![CDATA[WebFritzi]]></dc:creator><pubDate>Mon, 02 Feb 2004 01:27:08 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 08:31:01 GMT]]></title><description><![CDATA[<p>Also hier ist die Funktion die als Param. Name des zu überprufende Process erwartet und falls Process leuft gibt 1 zurück, sonst 0. Ganz einfach, funzt bei mir unter WinXP Pro.</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt; 
#include &lt;tlhelp32.h&gt; 

int CheckProcessState(char* Process) 
{
   HANDLE snapshot;
   PROCESSENTRY32 pe; 
   snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL); 
   pe.dwSize=sizeof(pe); 
   if(Process32First(snapshot, &amp;pe)) 
   {
      do 
      {
        if( lstrcmp(Process, pe.szExeFile) == 0 )// Wenn Process leuft  bereits
        return (1); // Process leuft
      }while(Process32Next(snapshot,&amp;pe));
    } 
    CloseHandle(snapshot);
    return (0);      // Process leuft nicht                              
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/449405</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449405</guid><dc:creator><![CDATA[Petr1]]></dc:creator><pubDate>Mon, 02 Feb 2004 08:31:01 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 16:43:33 GMT]]></title><description><![CDATA[<p>Hmm sorry, unter Devc++ lässt sich das ganze leider nicht kompilieren.<br />
Ich verstehe das Programm auch nicht so recht, da ich nicht erkennen kann auf welche .exe das sich bezieht oder bezieht sich das auf alle .exen die momentan laufen?<br />
Sorry wenn ich jetzt zu größe Ansprüche stelle, aber mich würde das mal ernsthaft interessieren!<br />
Nochmal konkret am Beispiel:</p>
<p><strong>wenn läuft</strong><br />
C:\Programme\mIRC\mirc.exe<br />
<strong>nix machen</strong></p>
<p><strong>wenn nicht läuft oder abgestürzt ist</strong><br />
C:\Programme\mIRC\mirc.exe ausführen</p>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/449803</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449803</guid><dc:creator><![CDATA[Falky]]></dc:creator><pubDate>Mon, 02 Feb 2004 16:43:33 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 17:44:03 GMT]]></title><description><![CDATA[<p>Wie du es mit dem DevC++ hinkriegst weiss ich leider nicht. Ich benutze VC++6.0 und habe nie devc++ benutzt, also tut mir leid.<br />
Und jetzt zu dem Code:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;  
#include &lt;tlhelp32.h&gt;  

int CheckProcessState(char* Process); // Funktion bekannt machen (Prototyp)

int WINAPI WinMain(HINSTANCE hInstance, 
                   HINSTANCE hPrevIsntance, 
                   PSTR szCmdine, int iCmdShow)
{
   int Result;
   Result = CheckProcessState( &quot;mirc.exe&quot;); // leuft mirc.exe ???
   if( Result )
      MessageBox(NULL, &quot;Process mirc.exe leuft&quot;, &quot;Info&quot;, 0);
   else
      MessageBox(NULL, &quot;Process mirc.exe leuft nicht&quot;, &quot;Info&quot;, 0);

   return 0;
}

int CheckProcessState(char* Process)  
{ 
   HANDLE snapshot; 
   PROCESSENTRY32 pe;  
   snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL);  
   pe.dwSize=sizeof(pe);  
   if(Process32First(snapshot, &amp;pe))  
   { 
      do  // Alle laufenden Processe durchgehen
      { 
        if( lstrcmp(Process, pe.szExeFile) == 0 )// Wenn Process leuft  bereits 
        return (1); // Process leuft 
      }while(Process32Next(snapshot,&amp;pe)); 
    }  
    CloseHandle(snapshot); 
    return (0);      // Process leuft nicht                               
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/449861</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449861</guid><dc:creator><![CDATA[Petr1]]></dc:creator><pubDate>Mon, 02 Feb 2004 17:44:03 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 18:06:26 GMT]]></title><description><![CDATA[<p>Könntest du das &quot;die Zeile gefällt ihm nicht&quot; mal noch etwas präzisieren?! :p</p>
]]></description><link>https://www.c-plusplus.net/forum/post/449886</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449886</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Mon, 02 Feb 2004 18:06:26 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 18:45:32 GMT]]></title><description><![CDATA[<p>Die Zeile :<br />
snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL); gefällt ihm nicht<br />
komisch gell?<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /> Aber die Zeile:<br />
do<br />
{<br />
prinf(?%s?,pe.szExeFile); &lt;&lt; Aber die gefällt ihm offensichtlich <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="😃"
    /><br />
}while(Process32Next(snapshot,&amp;pe));<br />
}</p>
<p>Also ich denke die Zeile gefählt ihm nicht weil da ein Fehler gibt, sondern sehr warscheinlich weil in Zeile prinf(?%s?,pe.szExeFile); ein Fehler gibt, so wäre es richtig prinf(&quot;%s\n&quot;,pe.szExeFile); Die Zeile gibt es nun im Code nicht mehr, also muß funktionieren. Hab aber net getestet <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/449929</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449929</guid><dc:creator><![CDATA[Petr1]]></dc:creator><pubDate>Mon, 02 Feb 2004 18:45:32 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 18:50:48 GMT]]></title><description><![CDATA[<p>Also hab letzte Codebeispiel getestet und bei mir leuft es einwandfrei<br />
0 Fehler<br />
0 Warnungen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/449937</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/449937</guid><dc:creator><![CDATA[Petr1]]></dc:creator><pubDate>Mon, 02 Feb 2004 18:50:48 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 20:21:15 GMT]]></title><description><![CDATA[<p>ja, jetzt bin ich vollends verwirrt <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /><br />
wenn du nochmal komplett den code posten könntest wärest du mein gott <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/450015</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/450015</guid><dc:creator><![CDATA[Falky]]></dc:creator><pubDate>Mon, 02 Feb 2004 20:21:15 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 20:35:33 GMT]]></title><description><![CDATA[<p>Der Code steht doch bereits 5 Postings weiter oben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/450029</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/450029</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Mon, 02 Feb 2004 20:35:33 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 20:51:43 GMT]]></title><description><![CDATA[<p>flenders schrieb:</p>
<blockquote>
<p>Der Code steht doch bereits 5 Postings weiter oben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
</blockquote>
<p>welcher nicht funktioniert :(((((</p>
]]></description><link>https://www.c-plusplus.net/forum/post/450042</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/450042</guid><dc:creator><![CDATA[Falky]]></dc:creator><pubDate>Mon, 02 Feb 2004 20:51:43 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Mon, 02 Feb 2004 21:28:45 GMT]]></title><description><![CDATA[<p>Inwiefern? Fehlermeldung beim Compilieren? Speicherzugriffsverletzung? ...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/450074</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/450074</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Mon, 02 Feb 2004 21:28:45 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Tue, 03 Feb 2004 05:03:30 GMT]]></title><description><![CDATA[<p>Falky schrieb:</p>
<blockquote>
<p>flenders schrieb:</p>
<blockquote>
<p>Der Code steht doch bereits 5 Postings weiter oben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
</blockquote>
<p>welcher nicht funktioniert :(((((</p>
</blockquote>
<p>Also der Code funzt bei mir, hab extra getestet 0Fehler + 0 Warnung</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;   
#include &lt;tlhelp32.h&gt;   

int CheckProcessState(char* Process); // Funktion bekannt machen (Prototyp) 

int WINAPI WinMain(HINSTANCE hInstance,  
                   HINSTANCE hPrevIsntance,  
                   PSTR szCmdine, int iCmdShow) 
{ 
   int Result; 
   Result = CheckProcessState( &quot;mirc.exe&quot;); // leuft mirc.exe ??? 
   if( Result ) 
      MessageBox(NULL, &quot;Process mirc.exe leuft&quot;, &quot;Info&quot;, 0); 
   else 
      MessageBox(NULL, &quot;Process mirc.exe leuft nicht&quot;, &quot;Info&quot;, 0); 

   return 0; 
} 

int CheckProcessState(char* Process)   
{  
   HANDLE snapshot;  
   PROCESSENTRY32 pe;   
   snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL);   
   pe.dwSize=sizeof(pe);   
   if(Process32First(snapshot, &amp;pe))   
   {  
      do  // Alle laufenden Processe durchgehen 
      {  
        if( lstrcmp(Process, pe.szExeFile) == 0 )// Wenn Process leuft  bereits  
        return (1); // Process leuft  
      }while(Process32Next(snapshot,&amp;pe));  
    }   
    CloseHandle(snapshot);  
    return (0);      // Process leuft nicht                                
}
</code></pre>
<p>Wenn es bei dir nicht/mir Fehlern kompillieren lässt dann kann es nur an dem Compiller liegen. Warscheinlich muß du noch etwas includieren oder noch welche<br />
*.libs einbinden obwohl ich nicht glaube <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/450204</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/450204</guid><dc:creator><![CDATA[Petr1]]></dc:creator><pubDate>Tue, 03 Feb 2004 05:03:30 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Tue, 08 May 2007 13:01:49 GMT]]></title><description><![CDATA[<p>Hallo ich bin neu hier und C++ anfänger.</p>
<p>Ich habe ein Problem unzwar möchte ich checken ob ein Prog noch offen ist.<br />
Das geht auch.<br />
Ich checke das jede Sekunde durch einen Timer.<br />
Nur das Problem ist das wenn das Prog läuft der Arbeitsspeicher voll läuft.<br />
Es liegt auf jedenfall an der Funktion.<br />
Kann mir einer helfen?</p>
<p>Gruß Space</p>
<p>Den Code hab ich genommen:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &lt;tlhelp32.h&gt;

int CheckProcessState(char* Process)
{
   HANDLE snapshot;
   PROCESSENTRY32 pe;
   snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL);
   pe.dwSize=sizeof(pe);
   if(Process32First(snapshot, &amp;pe))
   {
      do
      {
        if( lstrcmp(Process, pe.szExeFile) == 0 )// Wenn Process leuft  bereits
        return (1); // Process leuft
      }while(Process32Next(snapshot,&amp;pe));
    }
    CloseHandle(snapshot);
    return (0);      // Process leuft nicht                              
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1280877</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1280877</guid><dc:creator><![CDATA[space24]]></dc:creator><pubDate>Tue, 08 May 2007 13:01:49 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Tue, 08 May 2007 13:18:54 GMT]]></title><description><![CDATA[<p>ist der RAM auch voll, wenn du das ohne timer laufen lässt? <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>
<p>MFG<br />
Ace</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1280894</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1280894</guid><dc:creator><![CDATA[AceKiller73]]></dc:creator><pubDate>Tue, 08 May 2007 13:18:54 GMT</pubDate></item><item><title><![CDATA[Reply to wenn bla.exe nicht geöffnet --&amp;gt; öffnen on Tue, 08 May 2007 19:35:31 GMT]]></title><description><![CDATA[<p>Nö ist er nicht, nur dann checkt er es ja nur einmal.<br />
Aber es liegt an der funktion weil wenn der Timer läuft und die Funktion nicht genutzt wird sondern was anderes gemacht wird läuft der ram nicht voll nur bei der Funktion.</p>
<p>Hat vieleicht einer eine Idee?</p>
<p>Gruß Space</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1281027</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1281027</guid><dc:creator><![CDATA[space24]]></dc:creator><pubDate>Tue, 08 May 2007 19:35:31 GMT</pubDate></item></channel></rss>