<?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[sendkeys]]></title><description><![CDATA[<p>ok, weiß schon wieder nicht weiter.</p>
<p>ich möchte die funktion sendkeys verwenden. wie komm ich an die funktion ran? was muss ich inkludieren???</p>
<p>dafür <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformssendkeysclasstopic.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformssendkeysclasstopic.asp</a></p>
<p>bin ich zu doof. sowas wie public __gc class SendKeys sagt mir nix. ich will nur die funktion send verwenden können.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/80890/sendkeys</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 08:45:37 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/80890.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 26 Jul 2004 08:29:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to sendkeys on Mon, 26 Jul 2004 08:29:16 GMT]]></title><description><![CDATA[<p>ok, weiß schon wieder nicht weiter.</p>
<p>ich möchte die funktion sendkeys verwenden. wie komm ich an die funktion ran? was muss ich inkludieren???</p>
<p>dafür <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformssendkeysclasstopic.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformssendkeysclasstopic.asp</a></p>
<p>bin ich zu doof. sowas wie public __gc class SendKeys sagt mir nix. ich will nur die funktion send verwenden können.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/568269</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/568269</guid><dc:creator><![CDATA[- enForcer -]]></dc:creator><pubDate>Mon, 26 Jul 2004 08:29:16 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Mon, 26 Jul 2004 08:32:17 GMT]]></title><description><![CDATA[<p>SendKeys ist .NET. Vielleicht meinst du SendInput?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/568272</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/568272</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Mon, 26 Jul 2004 08:32:17 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Mon, 26 Jul 2004 08:42:38 GMT]]></title><description><![CDATA[<p>ich weiß nicht wie, aber ich will einfach eine tastenkombination absenden, die verarbeitet wird als wäre sie ganz normal per tastatur eingegeben worden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/568280</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/568280</guid><dc:creator><![CDATA[- enForcer -]]></dc:creator><pubDate>Mon, 26 Jul 2004 08:42:38 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Mon, 26 Jul 2004 09:01:00 GMT]]></title><description><![CDATA[<p>Servus,</p>
<p>Öhm, Schuß ins Blaue *peng*</p>
<pre><code class="language-cpp">//drücken
keybd_event( VK_CONTROL,
            0,
            KEYEVENTF_EXTENDEDKEY | 0,
            0 );

//drücken
keybd_event( 'Q',
			0,
			KEYEVENTF_EXTENDEDKEY | 0,
			0 );

//loslassen
keybd_event( 'Q',
			0,
			KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP,
			0 );

//loslassen
keybd_event( VK_CONTROL,
            0,
            KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP,
            0);
</code></pre>
<p>Musst du mal testen......</p>
<p>*winke*<br />
Hellsgore</p>
]]></description><link>https://www.c-plusplus.net/forum/post/568296</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/568296</guid><dc:creator><![CDATA[Hellsgore]]></dc:creator><pubDate>Mon, 26 Jul 2004 09:01:00 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Mon, 26 Jul 2004 09:22:57 GMT]]></title><description><![CDATA[<p>die funktion wurde durch sendinput ersetzt. nur parameter 2 von sendinput schnall ich net. wenn ich den deklarieren will (egal ob input oder lpinput) sagt er, dass er ihn net kennt. windows.h is includiert</p>
]]></description><link>https://www.c-plusplus.net/forum/post/568310</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/568310</guid><dc:creator><![CDATA[- enForcer -]]></dc:creator><pubDate>Mon, 26 Jul 2004 09:22:57 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Mon, 26 Jul 2004 10:08:27 GMT]]></title><description><![CDATA[<p>es geeeeeeeeeeeeeeeeeht.</p>
<p>das problem war, ich rufe die funktion auf wenn ich einen hotkey drücke (ctrl-alt-l). dabei wird dann die aktion (ctrl-c) ausgelöst. nur: zweiteres wird so schnell ausgelöst, dass ich den hotkey noch nicht losgelassen hab -&gt; da kommt dann eine krasse tastenkombination raus.</p>
<p>ich hab einfach ein sleep davorgebaut und jetzt gehts!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/568334</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/568334</guid><dc:creator><![CDATA[- enForcer -]]></dc:creator><pubDate>Mon, 26 Jul 2004 10:08:27 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Mon, 26 Jul 2004 11:00:40 GMT]]></title><description><![CDATA[<p>mmmh trotzdem noch eine frage:</p>
<p>ich kopiere ja einen text ins clipboard und füge den dann irgendwo in meinem programm ein. ich möchte aber, dass das clipboard danach wieder ganz so aussieht wie vor meiner aktion, also das mein strg-c - text nicht mehr drin ist, alles andere aber schon. wie mach ich denn das?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/568364</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/568364</guid><dc:creator><![CDATA[- enForcer -]]></dc:creator><pubDate>Mon, 26 Jul 2004 11:00:40 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Tue, 27 Jul 2004 06:20:13 GMT]]></title><description><![CDATA[<p>Hey, Ich habe das gleiche Poblem. Ich möchte auch das Clipboard nach einer meiner Aktionen wieder herstellen, so wie es vorher war.</p>
<p>Bitte um Hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/569097</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/569097</guid><dc:creator><![CDATA[Fritz the Cat]]></dc:creator><pubDate>Tue, 27 Jul 2004 06:20:13 GMT</pubDate></item><item><title><![CDATA[Reply to sendkeys on Wed, 28 Jul 2004 06:40:15 GMT]]></title><description><![CDATA[<p>dann mal ne allgemeine frage zum clipboard. word hat doch eines, das 24 einträge schafft. ist das das systemweite? oder gibts systemweit nur einen eintrag, weil wenn ich außerhalb von word was einfügen will, kann ich das ja immer nur mit dem zuletzt kopierte/ausgeschnittenen machen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/570028</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/570028</guid><dc:creator><![CDATA[- enForcer -]]></dc:creator><pubDate>Wed, 28 Jul 2004 06:40:15 GMT</pubDate></item></channel></rss>