<?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[mausklick zeitgesteuert ?]]></title><description><![CDATA[<p>hallo.<br />
ich suche schon seit geraumer zeit ein programm was einen linken mausklick ausführt und zwar zu einer bestimmten zeit. konkret wollte ich etwas aufnehmen lassen...<br />
kennt jemand so ein tool oder könnte mir jemadn so etwas mal proggen ?<br />
also um 15:30 und 17:00 ein mauskick ausführen.<br />
danke im voraus.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/241990/mausklick-zeitgesteuert</link><generator>RSS for Node</generator><lastBuildDate>Mon, 06 Apr 2026 00:01:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/241990.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 28 May 2009 12:59:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Thu, 28 May 2009 12:59:17 GMT]]></title><description><![CDATA[<p>hallo.<br />
ich suche schon seit geraumer zeit ein programm was einen linken mausklick ausführt und zwar zu einer bestimmten zeit. konkret wollte ich etwas aufnehmen lassen...<br />
kennt jemand so ein tool oder könnte mir jemadn so etwas mal proggen ?<br />
also um 15:30 und 17:00 ein mauskick ausführen.<br />
danke im voraus.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1717269</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1717269</guid><dc:creator><![CDATA[rumcajs007]]></dc:creator><pubDate>Thu, 28 May 2009 12:59:17 GMT</pubDate></item><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Thu, 28 May 2009 21:13:16 GMT]]></title><description><![CDATA[<p>sind nichtmal 15 zeilen, schreibs dir doch schnell selbst.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms724338(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms724338(VS.85).aspx</a><br />
<a href="http://msdn.microsoft.com/en-us/library/ms646310.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms646310.aspx</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1717585</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1717585</guid><dc:creator><![CDATA[Schurke]]></dc:creator><pubDate>Thu, 28 May 2009 21:13:16 GMT</pubDate></item><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Fri, 29 May 2009 09:52:01 GMT]]></title><description><![CDATA[<p>bitte bitte bitteee <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/1717781</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1717781</guid><dc:creator><![CDATA[rumcajs007]]></dc:creator><pubDate>Fri, 29 May 2009 09:52:01 GMT</pubDate></item><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Fri, 29 May 2009 10:48:52 GMT]]></title><description><![CDATA[<p>Da wäre das Projekteforum wohl angebrachter.<br />
Mit Hinweis, wieviel du bezahlst <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/1717830</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1717830</guid><dc:creator><![CDATA[mad_martin]]></dc:creator><pubDate>Fri, 29 May 2009 10:48:52 GMT</pubDate></item><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Fri, 29 May 2009 22:12:58 GMT]]></title><description><![CDATA[<pre><code>#include &lt;windows.h&gt;

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

const UINT TimerSec = 1;
const UINT SizeX    = 60;
const UINT SizeY    = 80;

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

   const char szAppName[] = &quot;Stopuhr&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,
                         szAppName,

                         WS_OVERLAPPED | WS_SYSMENU,

                         CW_USEDEFAULT,
                         CW_USEDEFAULT,
                         SizeX,
                         SizeY,
                         NULL,
                         NULL,
                         hInstance,
                         NULL);

   ShowWindow(hWnd, iCmdShow);
   UpdateWindow(hWnd);

   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     isActive;
   static int      iSec;
   static int      iMin;

   switch (message)
   {

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

   case WM_KEYDOWN:
      {
         switch (wParam)
         {

         case VK_SPACE:
            {
               isActive = !isActive;

               if (isActive)
               {

                  SetTimer(hWnd, TimerSec, 1000, NULL);
               }
               else
               {

                  KillTimer(hWnd, TimerSec);
               }
               return 0;
            }

         case VK_BACK:
            {
               if (isActive)
               {
                  isActive = FALSE;
                  KillTimer(hWnd, TimerSec);
               }
               iMin = iSec = 0;
               InvalidateRect(hWnd, NULL, TRUE);
               return 0;
            }

         case VK_ESCAPE:
            {
               SendMessage(hWnd, WM_CLOSE, 0, 0);
               return 0;
            }
         }
         return 0;
      }

   case WM_TIMER:
      {
         [b]if(iMin==2 &amp;&amp; iSec==0) {iMin=0;}[/b]
         if (iSec &lt; 59)
            ++iSec;
         else
         {
            iSec = 0;
            ++iMin;
         }
         InvalidateRect(hWnd, NULL, TRUE);
         return 0;
      }

   case WM_PAINT:
      {
         PAINTSTRUCT   ps;
         HDC           hDC;
         SIZE          size;
         char          sTime[6];
         int           iLength;

         iLength = wsprintf(sTime, &quot;%i:%02i&quot;, iMin, iSec);

         hDC = BeginPaint(hWnd, &amp;ps);
         {
            GetTextExtentPoint32(hDC, sTime, iLength, &amp;size);

            TextOut(hDC, rect.right / 2 - size.cx / 2, rect.bottom / 2 -
                         size.cy / 2, sTime, iLength);
         }
         EndPaint(hWnd, &amp;ps);         
         return 0;
      }
   case WM_DESTROY:
      {
         if (isActive)
         {
            KillTimer(hWnd, TimerSec);
         }
         PostQuitMessage(0);
         return 0;
      }
   }
   return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
<p>habe ein timer proggi gefunden und einen eintrag reingezeichent wenn 2 min vergangen sind soll die uhr auf 0 gesetzt werden...<br />
aber wie kriege ich anstatt dieser 'if' abfrage dass sich die linke maustaste aktiviert <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/1718140</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1718140</guid><dc:creator><![CDATA[rumcajs007]]></dc:creator><pubDate>Fri, 29 May 2009 22:12:58 GMT</pubDate></item><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Sat, 30 May 2009 21:48:06 GMT]]></title><description><![CDATA[<p>armes forum <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f60b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_savoring_food"
      title=":yum:"
      alt="😋"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1718458</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1718458</guid><dc:creator><![CDATA[rumcajs007]]></dc:creator><pubDate>Sat, 30 May 2009 21:48:06 GMT</pubDate></item><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Sat, 30 May 2009 21:49:44 GMT]]></title><description><![CDATA[<p>arm bist du, kannst ja nicht mal programmieren <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f60b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_savoring_food"
      title=":yum:"
      alt="😋"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1718460</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1718460</guid><dc:creator><![CDATA[ichiban]]></dc:creator><pubDate>Sat, 30 May 2009 21:49:44 GMT</pubDate></item><item><title><![CDATA[Reply to mausklick zeitgesteuert ? on Sun, 31 May 2009 09:23:56 GMT]]></title><description><![CDATA[<p>erst registrieren dann weiter reden <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 />
... war mir klar dass erst auf so ein posting jemand antworten wird <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_down"
      title=":-1:"
      alt="👎"
    /><br />
könnte mir jeand vlt. verraten wie ich ein 'enter' zeitgesteuert hinbekomme ?<br />
wie man dies abfragt weiss ich ja aber wie man eins auslöst ist mir noch rätselhaft.<br />
danke danke.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1718555</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1718555</guid><dc:creator><![CDATA[rumcajs007]]></dc:creator><pubDate>Sun, 31 May 2009 09:23:56 GMT</pubDate></item></channel></rss>