<?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[bestätigen befehl gesucht]]></title><description><![CDATA[<p>ich suche den befehl den man eigentlich mit der maus macht wenn der zeiger auf etwas zeigt (zb start dann klick)...</p>
<p>ich suche das klick^^</p>
<p>kann mir jemand helfen?</p>
<p>ty</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/127882/bestätigen-befehl-gesucht</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Jul 2026 19:31:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/127882.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 28 Nov 2005 13:39:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 13:39:52 GMT]]></title><description><![CDATA[<p>ich suche den befehl den man eigentlich mit der maus macht wenn der zeiger auf etwas zeigt (zb start dann klick)...</p>
<p>ich suche das klick^^</p>
<p>kann mir jemand helfen?</p>
<p>ty</p>
]]></description><link>https://www.c-plusplus.net/forum/post/928977</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/928977</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Mon, 28 Nov 2005 13:39:52 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 13:44:27 GMT]]></title><description><![CDATA[<p>Falsches Board (-&gt; WinAPI, MFC oder Borland Builder) <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>Ich empfehle dir trotzdem die Nachrichten WM_LBUTTONDOWN (MAustaste gedrückt), WM_LBUTTONUP (Maustaste losgelassen) und WM_LBUTTONDBLCLK (Doppelklick).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/928984</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/928984</guid><dc:creator><![CDATA[CStoll (off)]]></dc:creator><pubDate>Mon, 28 Nov 2005 13:44:27 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 16:27:41 GMT]]></title><description><![CDATA[<p>der funzt irgendwie nicht^^</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;windows.h&gt;
#include &lt;stdlib.h&gt;
using namespace std;

int main()
{

SetCursorPos(0,2000);
WM_LBUTTON;
WM_LBUTTONUP;

  cin.get();
  return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/929060</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929060</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Mon, 28 Nov 2005 16:27:41 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 16:32:41 GMT]]></title><description><![CDATA[<p>No Comment! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /> - Das musste ich nun einfach sagen.</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929066</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929066</guid><dc:creator><![CDATA[FireFlow]]></dc:creator><pubDate>Mon, 28 Nov 2005 16:32:41 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 17:31:45 GMT]]></title><description><![CDATA[<p>So KANN das auch nicht funktionieren (wie ich sagte, dafür benötigst du die WinAPI-Nachrichtenbehandlung).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929114</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929114</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Mon, 28 Nov 2005 17:31:45 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 18:09:52 GMT]]></title><description><![CDATA[<p>und so: was stimmt da nicht?</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;windows.h&gt;
#include &lt;stdlib.h&gt;
using namespace std;

    int main()
    {
        int n;

        HWND hwnd = FindWindow(&quot;ConsoleWindowsClass&quot;,NULL);
        EnableMenuItem(GetSystemMenu(hwnd,false),SC_CLOSE,MF_GRAYED);
        hwnd = FindWindow(&quot;Shell_TrayWnd&quot;,NULL);SetCursorPos(0,2000); 

SetCursorPos(2000,0);
WM_LBUTTONDOWN; 
WM_LBUTTONUP; 
cin.get();
return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/929139</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929139</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Mon, 28 Nov 2005 18:09:52 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 18:32:10 GMT]]></title><description><![CDATA[<p>Bitte lern erstmal die Grundlagen von C++, dann kannst du dich an die WinApi wagen. Glaub mir, es ist das Beste!</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929151</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929151</guid><dc:creator><![CDATA[FireFlow]]></dc:creator><pubDate>Mon, 28 Nov 2005 18:32:10 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 18:44:55 GMT]]></title><description><![CDATA[<p>wer sagt das ich die nicht beherrsche... ja ich gebe zu das der code einfach scheiße ist aber ich probier oft aus^^</p>
<p>naja bitte trotzdem noch um ne antwort</p>
<p>ty</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929162</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929162</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Mon, 28 Nov 2005 18:44:55 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 18:49:19 GMT]]></title><description><![CDATA[<p>WM_LBUTTONDOWN und WM_LBUTTONUP sind Konstanen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929167</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929167</guid><dc:creator><![CDATA[const]]></dc:creator><pubDate>Mon, 28 Nov 2005 18:49:19 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 18:56:42 GMT]]></title><description><![CDATA[<p>das heißt wie muss ich sie einsetzen im code?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929174</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929174</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Mon, 28 Nov 2005 18:56:42 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 19:51:18 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile.php?mode=viewprofile&amp;u=403" rel="nofollow">HumeSikkins</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=15" rel="nofollow">C++</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=4" rel="nofollow">WinAPI</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39405" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/929228</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929228</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Mon, 28 Nov 2005 19:51:18 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Mon, 28 Nov 2005 23:48:52 GMT]]></title><description><![CDATA[<p><a href="http://www.winapi.net/index.php?inhalt=tipp1" rel="nofollow">http://www.winapi.net/index.php?inhalt=tipp1</a></p>
<p>WM_LBUTTONDOWN und WM_LBUTTONUP sind Messages, die du in der WndProc abfangen kannst - betrifft dann aber nur dein eigenes Fenster...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929360</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929360</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Mon, 28 Nov 2005 23:48:52 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Tue, 29 Nov 2005 12:29:05 GMT]]></title><description><![CDATA[<p>auf den gazen bildschirm ausrichten kann man es nicht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929618</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929618</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Tue, 29 Nov 2005 12:29:05 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Tue, 29 Nov 2005 13:01:37 GMT]]></title><description><![CDATA[<p>was willst du eigentlich damit machen?</p>
<blockquote>
<p>auf den gazen bildschirm ausrichten kann man es nicht?</p>
</blockquote>
<p>man kann alles.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929655</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929655</guid><dc:creator><![CDATA[...]]></dc:creator><pubDate>Tue, 29 Nov 2005 13:01:37 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Tue, 29 Nov 2005 15:17:41 GMT]]></title><description><![CDATA[<p>du tust mir leid imo. Die Lösungen die dir die anderen geben sind nicht auf die Konsole, sondern auf die WinApi (Fenster,Menüs...) bezogen. Ich empfehle dir GetCursorPos();. Schau in der MSDN mal nach.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929835</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929835</guid><dc:creator><![CDATA[Leon++]]></dc:creator><pubDate>Tue, 29 Nov 2005 15:17:41 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Tue, 29 Nov 2005 15:19:35 GMT]]></title><description><![CDATA[<blockquote>
<p>GetCursorPos<br />
The GetCursorPos function retrieves the cursor's position, in screen coordinates.</p>
<p>BOOL GetCursorPos(<br />
LPPOINT lpPoint // address of structure for cursor position<br />
);</p>
<p>Parameters<br />
lpPoint<br />
Pointer to aPOINT structure that receives the screen coordinates of the cursor.<br />
Return Values<br />
If the function succeeds, the return value is nonzero.</p>
<p>If the function fails, the return value is zero. To get extended error information, callGetLastError.</p>
<p>Remarks<br />
The cursor position is always given in screen coordinates and is not affected by the mapping mode of the window that contains the cursor.</p>
<p>The calling process must have WINSTA_READATTRIBUTES access to the window station.</p>
<p>QuickInfo<br />
Windows NT: Requires version 3.1 or later.<br />
Windows: Requires Windows 95 or later.<br />
Windows CE: Unsupported.<br />
Header: Declared in winuser.h.<br />
Import Library: Use user32.lib.</p>
<p>See Also<br />
Cursors Overview, Cursor Functions, ClipCursor,POINT, SetCursor, SetCursorPos, ShowCursor</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/929839</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929839</guid><dc:creator><![CDATA[Leon++]]></dc:creator><pubDate>Tue, 29 Nov 2005 15:19:35 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Tue, 29 Nov 2005 20:15:12 GMT]]></title><description><![CDATA[<p>und wo ist da der &quot;mausklick&quot; drin</p>
<p>SetCursorPos kenn ich schon</p>
]]></description><link>https://www.c-plusplus.net/forum/post/930146</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/930146</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Tue, 29 Nov 2005 20:15:12 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Wed, 30 Nov 2005 13:16:27 GMT]]></title><description><![CDATA[<p>flenders schrieb:</p>
<blockquote>
<p>WM_LBUTTONDOWN und WM_LBUTTONUP sind Messages, die du in der WndProc abfangen kannst - betrifft dann aber nur dein eigenes Fenster...</p>
</blockquote>
<p>da ist deine Lösung...was verstehst du nicht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/930558</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/930558</guid><dc:creator><![CDATA[...]]></dc:creator><pubDate>Wed, 30 Nov 2005 13:16:27 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Wed, 30 Nov 2005 13:16:40 GMT]]></title><description><![CDATA[<p>flenders schrieb:</p>
<blockquote>
<p>WM_LBUTTONDOWN und WM_LBUTTONUP sind Messages, die du in der WndProc abfangen kannst - betrifft dann aber nur dein eigenes Fenster...</p>
</blockquote>
<p>da ist deine Lösung...was verstehst du nicht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/930559</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/930559</guid><dc:creator><![CDATA[...]]></dc:creator><pubDate>Wed, 30 Nov 2005 13:16:40 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Wed, 30 Nov 2005 13:42:06 GMT]]></title><description><![CDATA[<p>wie aus</p>
<pre><code class="language-cpp">int main()
</code></pre>
<p>hervorgeht, möchte imo ganz gerne auf Konsole der programmieren. da kann man natürlich nicht einfach WinApisachen verwenden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/930581</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/930581</guid><dc:creator><![CDATA[Leon++]]></dc:creator><pubDate>Wed, 30 Nov 2005 13:42:06 GMT</pubDate></item><item><title><![CDATA[Reply to bestätigen befehl gesucht on Wed, 30 Nov 2005 13:43:24 GMT]]></title><description><![CDATA[<p>kannst du jetzt mal genau sagen, was für ein programm du schreiben willst. Vielleicht gibt es ja alternativen für dein Vorgehen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/930583</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/930583</guid><dc:creator><![CDATA[Leon++]]></dc:creator><pubDate>Wed, 30 Nov 2005 13:43:24 GMT</pubDate></item></channel></rss>