<?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[Variable ausgeben]]></title><description><![CDATA[<p>hallo Forum,</p>
<p>ich habe ein tatstatur abfrage programm und möchte eine variable in const char ausgeben, weiß0 ahber nicht wie, ich möcte halt das der wert dort angezeigt wird.</p>
<p>Hier der Code:</p>
<pre><code>#include &lt;windows.h&gt;
#include &quot;stdafx.h&quot;
#include &quot;gjfghjs.h&quot;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
                   PSTR szCmdLine, int iCmdShow)
{
   MSG          msg;
   HWND         hWnd;
   WNDCLASS     wc;

   char szAppName[] = &quot;Tastaturabfragen&quot;;

   wc.cbClsExtra         = 0;
   wc.cbWndExtra         = 0;
   wc.hbrBackground      = (HBRUSH) GetStockObject(WHITE_BRUSH);
   wc.hCursor            = LoadCursor(NULL, IDC_ARROW);
   wc.hIcon              = LoadIcon(NULL, IDI_APPLICATION);
   wc.hInstance          = hInstance;
   wc.lpfnWndProc        = WndProc;
   wc.lpszClassName      = szAppName;
   wc.lpszMenuName       = NULL;
   wc.style              = CS_HREDRAW | CS_VREDRAW;

   RegisterClass(&amp;wc);

  hWnd = CreateWindow(szAppName,
            TEXT(&quot;FullscreenWindow&quot;),
            WS_POPUP,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            NULL,
            NULL,
            hInstance,
            NULL);

    // window darstellen und maximieren
    ShowWindow(hWnd, SW_MAXIMIZE);

   while (GetMessage(&amp;msg, NULL, 0, 0))
   {
      TranslateMessage(&amp;msg);
      DispatchMessage(&amp;msg);
   }
   return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{

      static RECT   rect;
   static bool   ArrowKeys[4];

   switch (message)
   {

   case WM_SIZE:
      {
         rect.right  = LOWORD(lParam);
         rect.bottom = HIWORD(lParam);
         return 0;
      }

 case WM_KEYDOWN:
      {

         switch (wParam)
         {
         case VK_LEFT:

           ArrowKeys[0] = true;
            break;

         case VK_UP:
            ArrowKeys[1] = true;
            break;

         case VK_RIGHT:
            ArrowKeys[2] = true;
            break;

         case VK_DOWN:
            ArrowKeys[3] = true;
            break;

         default:
            return 0;
         }
         InvalidateRect(hWnd, NULL, FALSE);
         return 0;
      }

      case WM_KEYUP:
      {
         switch (wParam)
         {
         case VK_LEFT:
            ArrowKeys[0] = false;
            break;

         case VK_UP:
            ArrowKeys[1] = false;
            break;

         case VK_RIGHT:
            ArrowKeys[2] = false;
            break;

         case VK_DOWN:
            ArrowKeys[3] = false;
            break;

         default:
            return 0;
         }
         InvalidateRect(hWnd, NULL, FALSE);
         return 0;
      }

      case WM_PAINT:
      {
         PAINTSTRUCT  ps;
         HDC          hDC;
       int a;
       int i;

	   const char  szText[] = &quot;Hallo, dies ist der Text. %a&quot;;

       SIZE         size;

       char szKeyStatus[40];
         int  iKeyLength;

         hDC = BeginPaint(hWnd, &amp;ps);

		  TextOut(hDC, 50, 50, szText, sizeof(szText) - 1);

       for (int i = 0; i &lt; 4; i++)
         {
            iKeyLength = wsprintf(szKeyStatus, &quot;Pfeil-Taste %i: %i&quot;,
                                  i, ArrowKeys[i]);

          GetTextExtentPoint32(hDC, szKeyStatus, iKeyLength, &amp;size);

            TextOut(hDC, rect.right / 2 - size.cx / 2, rect.bottom / 2 -
                    2 * size.cy + i * size.cy, szKeyStatus, iKeyLength);

         int a = ArrowKeys[i];
		 int b = i;

       }

         EndPaint(hWnd, &amp;ps);

         return 0;
      }
   case WM_DESTROY:
      {
         PostQuitMessage(0);
         return 0;
      }
   }
   return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
<p>Könnte mir vieleicht jemand sagen wie ich in const char einen wert einer variable anzeigen lassen kann?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/187976/variable-ausgeben</link><generator>RSS for Node</generator><lastBuildDate>Fri, 03 Jul 2026 21:56:07 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/187976.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 26 Jul 2007 00:13:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 00:13:13 GMT]]></title><description><![CDATA[<p>hallo Forum,</p>
<p>ich habe ein tatstatur abfrage programm und möchte eine variable in const char ausgeben, weiß0 ahber nicht wie, ich möcte halt das der wert dort angezeigt wird.</p>
<p>Hier der Code:</p>
<pre><code>#include &lt;windows.h&gt;
#include &quot;stdafx.h&quot;
#include &quot;gjfghjs.h&quot;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
                   PSTR szCmdLine, int iCmdShow)
{
   MSG          msg;
   HWND         hWnd;
   WNDCLASS     wc;

   char szAppName[] = &quot;Tastaturabfragen&quot;;

   wc.cbClsExtra         = 0;
   wc.cbWndExtra         = 0;
   wc.hbrBackground      = (HBRUSH) GetStockObject(WHITE_BRUSH);
   wc.hCursor            = LoadCursor(NULL, IDC_ARROW);
   wc.hIcon              = LoadIcon(NULL, IDI_APPLICATION);
   wc.hInstance          = hInstance;
   wc.lpfnWndProc        = WndProc;
   wc.lpszClassName      = szAppName;
   wc.lpszMenuName       = NULL;
   wc.style              = CS_HREDRAW | CS_VREDRAW;

   RegisterClass(&amp;wc);

  hWnd = CreateWindow(szAppName,
            TEXT(&quot;FullscreenWindow&quot;),
            WS_POPUP,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            NULL,
            NULL,
            hInstance,
            NULL);

    // window darstellen und maximieren
    ShowWindow(hWnd, SW_MAXIMIZE);

   while (GetMessage(&amp;msg, NULL, 0, 0))
   {
      TranslateMessage(&amp;msg);
      DispatchMessage(&amp;msg);
   }
   return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{

      static RECT   rect;
   static bool   ArrowKeys[4];

   switch (message)
   {

   case WM_SIZE:
      {
         rect.right  = LOWORD(lParam);
         rect.bottom = HIWORD(lParam);
         return 0;
      }

 case WM_KEYDOWN:
      {

         switch (wParam)
         {
         case VK_LEFT:

           ArrowKeys[0] = true;
            break;

         case VK_UP:
            ArrowKeys[1] = true;
            break;

         case VK_RIGHT:
            ArrowKeys[2] = true;
            break;

         case VK_DOWN:
            ArrowKeys[3] = true;
            break;

         default:
            return 0;
         }
         InvalidateRect(hWnd, NULL, FALSE);
         return 0;
      }

      case WM_KEYUP:
      {
         switch (wParam)
         {
         case VK_LEFT:
            ArrowKeys[0] = false;
            break;

         case VK_UP:
            ArrowKeys[1] = false;
            break;

         case VK_RIGHT:
            ArrowKeys[2] = false;
            break;

         case VK_DOWN:
            ArrowKeys[3] = false;
            break;

         default:
            return 0;
         }
         InvalidateRect(hWnd, NULL, FALSE);
         return 0;
      }

      case WM_PAINT:
      {
         PAINTSTRUCT  ps;
         HDC          hDC;
       int a;
       int i;

	   const char  szText[] = &quot;Hallo, dies ist der Text. %a&quot;;

       SIZE         size;

       char szKeyStatus[40];
         int  iKeyLength;

         hDC = BeginPaint(hWnd, &amp;ps);

		  TextOut(hDC, 50, 50, szText, sizeof(szText) - 1);

       for (int i = 0; i &lt; 4; i++)
         {
            iKeyLength = wsprintf(szKeyStatus, &quot;Pfeil-Taste %i: %i&quot;,
                                  i, ArrowKeys[i]);

          GetTextExtentPoint32(hDC, szKeyStatus, iKeyLength, &amp;size);

            TextOut(hDC, rect.right / 2 - size.cx / 2, rect.bottom / 2 -
                    2 * size.cy + i * size.cy, szKeyStatus, iKeyLength);

         int a = ArrowKeys[i];
		 int b = i;

       }

         EndPaint(hWnd, &amp;ps);

         return 0;
      }
   case WM_DESTROY:
      {
         PostQuitMessage(0);
         return 0;
      }
   }
   return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
<p>Könnte mir vieleicht jemand sagen wie ich in const char einen wert einer variable anzeigen lassen kann?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1332654</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332654</guid><dc:creator><![CDATA[Showball]]></dc:creator><pubDate>Thu, 26 Jul 2007 00:13:13 GMT</pubDate></item><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 00:40:59 GMT]]></title><description><![CDATA[<p>&quot;const char&quot; ist ein Typ und keine Variable. Probier es mit wsprintf () :</p>
<pre><code class="language-cpp">...
// const char  szText[] = &quot;Hallo, dies ist der Text. %a&quot;; 
 char  szText [200];
 wsprintf (szText,&quot;Hallo, dies ist der Text. %i&quot;,a); // &lt;- formatiert Variable &quot;a&quot; als Ganzzahl (integer)
...
</code></pre>
<p>Und bei der Ausgabe dann :</p>
<pre><code class="language-cpp">...
// TextOut(hDC, 50, 50, szText, sizeof(szText) - 1);
 TextOut(hDC, 50, 50, szText, lstrlen (szText));
...
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1332655</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332655</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Thu, 26 Jul 2007 00:40:59 GMT</pubDate></item><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 00:59:44 GMT]]></title><description><![CDATA[<p>Vielen dank!!!</p>
<p>das amcht das jetzt viel einfacher für mich die fehler zu finden und innerhalb von 5 minuten habe ich jetzt das gesschaft wo ich schon seit 2 tagen dranne sitze <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>Vielen dank,. jetzt weiß ich auch endlich das ich die ArrowLey[2] oder 3 oder so benutzen muss und nicht ArrowKey[i]</p>
<p><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>danke nochmals!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1332656</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332656</guid><dc:creator><![CDATA[Showball]]></dc:creator><pubDate>Thu, 26 Jul 2007 00:59:44 GMT</pubDate></item><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 01:40:05 GMT]]></title><description><![CDATA[<p>Achso, mal so eine andere frage, wie kann ich in einer schleife einen sleep einbauen???</p>
<p>Denn wenn ich einen sleep einbaue mit dem befehl:</p>
<p>sleep 1000;</p>
<p>dann kommt ne error</p>
<p>Dnann komt da sleep kein decladierter bezeichner ist <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=":/"
      alt="😕"
    /></p>
<p>oder kann man irgentwie anders eine sleep machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1332657</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332657</guid><dc:creator><![CDATA[Showball]]></dc:creator><pubDate>Thu, 26 Jul 2007 01:40:05 GMT</pubDate></item><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 05:11:16 GMT]]></title><description><![CDATA[<p>Sleep(1000);</p>
<p>Dafür brauchst du nur die windows.h zu inkludieren, dann läuft das.</p>
<p>gruß<br />
Martin</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1332666</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332666</guid><dc:creator><![CDATA[mad_martin]]></dc:creator><pubDate>Thu, 26 Jul 2007 05:11:16 GMT</pubDate></item><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 05:34:00 GMT]]></title><description><![CDATA[<p>danke, es klappt, aber nun habe ich ein anderes problehm <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=":/"
      alt="😕"
    /></p>
<p>ich habe zum test erstmal nur das sleep in die Schleife, aber wenn die bedingung der schleife erfüllt wird, dann geht die cpu wieder auf 100% selbst wenn ich sie wieder los lasse.</p>
<p>Eine schleife wird ja so lange durchgeführt bis diebedingung erfüllt ist, und nichts von ausehalb kann dann auf die bedingung zu grefen, also es wird nur die schleife bearbeitet, nicht anderes, wenn die schleife anfängt durchzulaufen.</p>
<p>Aber nun habe ich ja ein Sleep, also sollte die schleife ja nicht permanent durchlaufen oder? aber sie tut es trotzdem, habe ich da noch etwas übersehen?? bitte klärt mich auf <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>Unf hier mein wunderbarer code, ist zwar noch ein wenig durcheinander, aber er erfüllt seinen sinn^^</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include&lt;iostream&gt;
#include &quot;stdafx.h&quot;
#include &quot;gege.h&quot;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
                   PSTR szCmdLine, int iCmdShow)
{
   MSG          msg;
   HWND         hWnd;
   WNDCLASS     wc;

   char szAppName[] = &quot;Tastaturabfragen&quot;;

   wc.cbClsExtra         = 0;
   wc.cbWndExtra         = 0;
   wc.hbrBackground      = (HBRUSH) GetStockObject(WHITE_BRUSH);
   wc.hCursor            = LoadCursor(NULL, IDC_ARROW);
   wc.hIcon              = LoadIcon(NULL, IDI_APPLICATION);
   wc.hInstance          = hInstance;
   wc.lpfnWndProc        = WndProc;
   wc.lpszClassName      = szAppName;
   wc.lpszMenuName       = NULL;
   wc.style              = CS_HREDRAW | CS_VREDRAW;

   RegisterClass(&amp;wc);

  hWnd = CreateWindow(szAppName,
            TEXT(&quot;FullscreenWindow&quot;),
            WS_POPUP,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            CW_USEDEFAULT,
            NULL,
            NULL,
            hInstance,
            NULL);

    // window darstellen und maximieren
    ShowWindow(hWnd, SW_MAXIMIZE);

   while (GetMessage(&amp;msg, NULL, 0, 0))
   {
      TranslateMessage(&amp;msg);
      DispatchMessage(&amp;msg);
   }
   return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{

   static RECT   rect;
   static bool   ArrowKeys[4];
   static char     cBuffer[100];
   static int      iActLen; 

HANDLE hbitmap = LoadImage(NULL,TEXT(&quot;C:\\Dokumente und Einstellungen\\Dustin.TRANCE\\Eigene Dateien\\Visual Studio 2005\\Projects\\gege\\bild2.bmp&quot;),IMAGE_BITMAP,0,0,LR_LOADFROMFILE);
HDC hdc = GetWindowDC(hWnd);
HDC hdc_ram = CreateCompatibleDC(NULL);

   switch (message)
   {

   case WM_SIZE:
      {
         rect.right  = LOWORD(lParam);
         rect.bottom = HIWORD(lParam);
         return 0;
      }

	  case WM_CHAR:
      {
         switch (wParam)
         {

          case '\r':
            iActLen = 0;
            InvalidateRect(hWnd, NULL, TRUE);
            break;

         case '\b':
            if (iActLen &lt;= 0)
               break;

            iActLen--;
            InvalidateRect(hWnd, NULL, TRUE);
            break;

                  case '\t':
         case '\n':
         case  27 :
            break;

 default:
            if (iActLen &lt; sizeof(cBuffer))
            {
               cBuffer[iActLen++] = wParam;
               InvalidateRect(hWnd, NULL, FALSE);
            }
            break;
         }
         return 0;
      } 

 case WM_KEYDOWN:
      {

         switch (wParam)
         {
         case VK_LEFT:

           ArrowKeys[0] = true;
            break;

         case VK_UP:
            ArrowKeys[1] = true;
            break;

         case VK_RIGHT:
            ArrowKeys[2] = true;
            break;

         case VK_DOWN:
            ArrowKeys[3] = true;
            break;

         default:
            return 0;
         }
         InvalidateRect(hWnd, NULL, FALSE);
         return 0;
      }

      case WM_KEYUP:
      {
         switch (wParam)
         {
         case VK_LEFT:
            ArrowKeys[0] = false;
            break;

         case VK_UP:
            ArrowKeys[1] = false;
            break;

         case VK_RIGHT:
            ArrowKeys[2] = false;
            break;

         case VK_DOWN:
            ArrowKeys[3] = false;
            break;

         default:
            return 0;
         }
         InvalidateRect(hWnd, NULL, FALSE);
         return 0;
      }

      case WM_PAINT:
      {
         PAINTSTRUCT  ps;
         HDC          hDC;
       int a=0;

       int i;

       SIZE         size;

       char szKeyStatus[40];
         int  iKeyLength;

         hDC = BeginPaint(hWnd, &amp;ps);

		 DrawText(hDC, cBuffer, iActLen, &amp;rect,
                          DT_SINGLELINE | DT_VCENTER); 

		 hbitmap = LoadImage (NULL,TEXT(&quot;C:\\bild2.bmp&quot;),IMAGE_BITMAP,0,0,LR_LOADFROMFILE);
  hdc_ram = CreateCompatibleDC(NULL);
  SelectObject (hdc_ram, hbitmap);
  BitBlt       (hdc,50,50,500,500,hdc_ram,0,0,SRCCOPY);
  DeleteDC     (hdc_ram);
  DeleteObject (hbitmap); 

  hbitmap = LoadImage (NULL,TEXT(&quot;C:\\bild2.bmp&quot;),IMAGE_BITMAP,0,0,LR_LOADFROMFILE);
  hdc_ram = CreateCompatibleDC(NULL);
  SelectObject (hdc_ram, hbitmap);
  BitBlt       (hdc,100,100,500,500,hdc_ram,0,0,SRCCOPY);
  DeleteDC     (hdc_ram);
  DeleteObject (hbitmap); 

       for (int i = 0; i &lt; 4; i++)
         {

            iKeyLength = wsprintf(szKeyStatus, &quot;Pfeil-Taste %i: %i&quot;,
                                  i, ArrowKeys[i]);

          GetTextExtentPoint32(hDC, szKeyStatus, iKeyLength, &amp;size);

            TextOut(hDC, rect.right / 2 - size.cx / 2, rect.bottom / 2 -
                    2 * size.cy + i * size.cy, szKeyStatus, iKeyLength);

         int a = ArrowKeys[i];
		 int b = ArrowKeys[2];

		 char  szText [200];
       wsprintf (szText,&quot;Hallo, dies ist der Text. %i %i&quot;,b, a); // &lt;- formatiert Variable &quot;a&quot; als Ganzzahl (integer) 
       TextOut(hDC, 50, 50, szText, lstrlen (szText));

	   while(b==1)
	   {
		   Sleep(1000);
	   }

	   }

         EndPaint(hWnd, &amp;ps);

         return 0;
      }
   case WM_DESTROY:
      {
         PostQuitMessage(0);
         return 0;
      }
   }
   return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1332670</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332670</guid><dc:creator><![CDATA[Showball]]></dc:creator><pubDate>Thu, 26 Jul 2007 05:34:00 GMT</pubDate></item><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 06:13:55 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">while(b==1)
{
Sleep(1000);
}
</code></pre>
<p>Du hast keine Abbruchbedingung...:</p>
<p>Die Tastendrücke werden ja nicht in der Schleife getestet, sondern außerhalb, also dort, wo du in der Schleife nicht testest:</p>
<p><strong>Deine Schleife läuft immer weiter und macht nichts! Du prüfst auch nicht auf Tastenevents! (in der Schleife)</strong></p>
<blockquote>
<p>Aber nun habe ich ja ein Sleep, also sollte die schleife ja nicht permanent durchlaufen oder? aber sie tut es trotzdem, habe ich da noch etwas übersehen?? bitte klärt mich auf <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>Warum sollte sie nicht immer durchlaufen? Sleep() lässt das Programm an der angegebenen Stelle pausieren...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1332686</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332686</guid><dc:creator><![CDATA[langeweile]]></dc:creator><pubDate>Thu, 26 Jul 2007 06:13:55 GMT</pubDate></item><item><title><![CDATA[Reply to Variable ausgeben on Thu, 26 Jul 2007 08:57:10 GMT]]></title><description><![CDATA[<p>Wie kann man tastenevent prüfen?</p>
<p>Und wie ist es möglich eine schleife für bsp 1 sekunde anzuhalten, das sie nach 1 sekunde wieder drcuhleuft?</p>
<p>MfG<br />
Showball!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1332795</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1332795</guid><dc:creator><![CDATA[Showball]]></dc:creator><pubDate>Thu, 26 Jul 2007 08:57:10 GMT</pubDate></item></channel></rss>