<?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[Tasteneingaben simulieren...]]></title><description><![CDATA[<p>Hi</p>
<p>Warum funktioniert dass hier nicht richtig?<br />
Das Problem ist wenn ich z.B.: &quot;Test====1234BluB&quot; eingebe kommt &quot;test0001234blub&quot;.</p>
<p>Ich finde den Fehler einfach nicht <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>
<pre><code class="language-cpp">void WriteString( std::string Text, int Delay )
{
	int  ScanCode;
	bool IsAlt;
	bool IsCtrl;
	bool IsShift;

	for ( unsigned int i = 0; i &lt; Text.length(); i++)
	{
		ScanCode = VkKeyScan( Text[i] );

		if( ( GetAsyncKeyState( VK_SHIFT ) &amp; 0x8000 ) )
		{
			IsShift = true;
		}
		else
		{
			IsShift = false;
		}

		if( ( GetAsyncKeyState( VK_CONTROL ) &amp; 0x8000 ) )
		{
			IsCtrl = true;
		}
		else
		{
			IsCtrl = false;
		}

		if( ( GetAsyncKeyState( VK_MENU ) &amp; 0x8000 ) )
		{
			IsAlt = true;
		}
		else
		{
			IsAlt = false;
		}

		if ( IsShift )
		{
			keybd_event( VK_SHIFT, 0, 0, 0 ); 
		}
		if ( IsCtrl )
		{
			keybd_event( VK_CONTROL, 0, 0, 0 ); 
		}
		if ( IsAlt )
		{
			keybd_event( VK_MENU, 0, 0, 0 ); 
		}

		//keybd_event( (BYTE) VkKeyScanW( Text[i] ), 0 ,0 ,0 );
		//keybd_event( (BYTE) VkKeyScanW( Text[i] ), 0, KEYEVENTF_KEYUP, 0 );

		keybd_event( ScanCode, 0 ,0 ,0 );
		keybd_event( ScanCode, 0, KEYEVENTF_KEYUP, 0 );

		if ( IsShift )
		{
			keybd_event( VK_SHIFT, 0, KEYEVENTF_KEYUP, 0 ); 
		}
		if ( IsCtrl )
		{
			keybd_event( VK_CONTROL, 0, KEYEVENTF_KEYUP, 0 ); 
		}
		if ( IsAlt )
		{
			keybd_event( VK_MENU, 0, KEYEVENTF_KEYUP, 0 ); 
		}

		Sleep( Delay );
	}
}
</code></pre>
<p>Danke schon jetzt für die Hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/161635/tasteneingaben-simulieren</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 05:06:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/161635.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 08 Oct 2006 21:56:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Sun, 08 Oct 2006 21:56:53 GMT]]></title><description><![CDATA[<p>Hi</p>
<p>Warum funktioniert dass hier nicht richtig?<br />
Das Problem ist wenn ich z.B.: &quot;Test====1234BluB&quot; eingebe kommt &quot;test0001234blub&quot;.</p>
<p>Ich finde den Fehler einfach nicht <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>
<pre><code class="language-cpp">void WriteString( std::string Text, int Delay )
{
	int  ScanCode;
	bool IsAlt;
	bool IsCtrl;
	bool IsShift;

	for ( unsigned int i = 0; i &lt; Text.length(); i++)
	{
		ScanCode = VkKeyScan( Text[i] );

		if( ( GetAsyncKeyState( VK_SHIFT ) &amp; 0x8000 ) )
		{
			IsShift = true;
		}
		else
		{
			IsShift = false;
		}

		if( ( GetAsyncKeyState( VK_CONTROL ) &amp; 0x8000 ) )
		{
			IsCtrl = true;
		}
		else
		{
			IsCtrl = false;
		}

		if( ( GetAsyncKeyState( VK_MENU ) &amp; 0x8000 ) )
		{
			IsAlt = true;
		}
		else
		{
			IsAlt = false;
		}

		if ( IsShift )
		{
			keybd_event( VK_SHIFT, 0, 0, 0 ); 
		}
		if ( IsCtrl )
		{
			keybd_event( VK_CONTROL, 0, 0, 0 ); 
		}
		if ( IsAlt )
		{
			keybd_event( VK_MENU, 0, 0, 0 ); 
		}

		//keybd_event( (BYTE) VkKeyScanW( Text[i] ), 0 ,0 ,0 );
		//keybd_event( (BYTE) VkKeyScanW( Text[i] ), 0, KEYEVENTF_KEYUP, 0 );

		keybd_event( ScanCode, 0 ,0 ,0 );
		keybd_event( ScanCode, 0, KEYEVENTF_KEYUP, 0 );

		if ( IsShift )
		{
			keybd_event( VK_SHIFT, 0, KEYEVENTF_KEYUP, 0 ); 
		}
		if ( IsCtrl )
		{
			keybd_event( VK_CONTROL, 0, KEYEVENTF_KEYUP, 0 ); 
		}
		if ( IsAlt )
		{
			keybd_event( VK_MENU, 0, KEYEVENTF_KEYUP, 0 ); 
		}

		Sleep( Delay );
	}
}
</code></pre>
<p>Danke schon jetzt für die Hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1151711</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1151711</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Sun, 08 Oct 2006 21:56:53 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Mon, 09 Oct 2006 04:50:53 GMT]]></title><description><![CDATA[<p>IchBinSoRatlos schrieb:</p>
<blockquote>
<p>Warum funktioniert dass hier nicht richtig?</p>
</blockquote>
<p>Weil du IsAlt, IsShift und IsCtrl aus dem Zustand der Tastatur ermittelst, und nicht aus dem Text. Um VkKeyScan (oder VkKeyScanEx) kommst du nicht herum.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1151740</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1151740</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Mon, 09 Oct 2006 04:50:53 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Mon, 09 Oct 2006 19:30:17 GMT]]></title><description><![CDATA[<p>Danke für deine Antwort <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>Ich hab sowas befürchtet. Kanns mir jemand vielleicht sagen wie ich dann für den Text den Zustand ermitteln kann...?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1151792</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1151792</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Mon, 09 Oct 2006 19:30:17 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Mon, 09 Oct 2006 21:00:27 GMT]]></title><description><![CDATA[<p>IchBinSoRatlos schrieb:</p>
<blockquote>
<p>Danke für deine Antwort <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>Ich hab sowas befürchtet. Kanns mir jemand vielleicht sagen wie ich dann für den Text den Zustand ermitteln kann...?</p>
</blockquote>
<p>ich weiß für dieses Problem leider auch keine Lösung... aber du willst doch bestimmt eine Anwendung o.ä. &quot;fernsteuern&quot; oder ???</p>
<p>es ist einfacher den &quot;String&quot; direkt an das entsprechende Window zu schicken als ihn über &quot;Umweg&quot; als virtuelle Tastaturkommandos zum Fenster zu senden !!!</p>
<p>schau/such mal nach <strong>SendMessage &amp; WM_SETTEXT</strong> <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>cu veganza</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1151839</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1151839</guid><dc:creator><![CDATA[veganza]]></dc:creator><pubDate>Mon, 09 Oct 2006 21:00:27 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Tue, 10 Oct 2006 13:05:57 GMT]]></title><description><![CDATA[<p>Ich weiß nicht, ob fernsteuern der richtige Begriff ist. Ich möchte das der Benutzer den Cursor in ein Textfeld platziert z.B. auch in dieses hier wo ich meine Antwort zu verfasse und das Programm dieses dann automatisch füllt. Würde ich das über Handles erledigen wäre ich wohl auf &quot;echte&quot; Programme wie den Editor usw. beschränkt und hier (Firefox) würds so nicht mehr funktionieren? Es muss doch hier jemand eine Lösung wissen? Ich hab Lösungen in Delphi gesehen und versucht diese nachzuprogrammieren, aber hat nicht geklappt (s. Oben) <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><a href="http://www.delphipraxis.net/post562991.html" rel="nofollow">http://www.delphipraxis.net/post562991.html</a></p>
<p>Da ich selbst allerdings kein Delphi kann und mir daher einige Konstrukte total fremd waren hab ichs dann halt anders gelöst, wo wahrscheinlich auch der Fehler liegt. Vielleicht kann mir von euch jemand das auf C++ portieren?</p>
<p>Danke schonmal</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1152255</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1152255</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Tue, 10 Oct 2006 13:05:57 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Tue, 10 Oct 2006 13:16:23 GMT]]></title><description><![CDATA[<p>IchBinSoRatlos schrieb:</p>
<blockquote>
<p>Kanns mir jemand vielleicht sagen wie ich dann für den Text den Zustand ermitteln kann...?</p>
</blockquote>
<p>Aus dem Rückgabewert von VkKeyScan(Ex).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1152264</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1152264</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Tue, 10 Oct 2006 13:16:23 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Tue, 10 Oct 2006 13:22:09 GMT]]></title><description><![CDATA[<p>IchBinSoRatlos schrieb:</p>
<blockquote>
<p>Ich möchte das der Benutzer den Cursor in ein Textfeld platziert z.B. auch in dieses hier wo ich meine Antwort zu verfasse und das Programm dieses dann automatisch füllt.</p>
</blockquote>
<p>SetCursorPos und keybd_event bzw SetFocus und FindWindow...vllt. hilft dir das ja weiter <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/1152268</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1152268</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Tue, 10 Oct 2006 13:22:09 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Tue, 10 Oct 2006 15:45:29 GMT]]></title><description><![CDATA[<p>Hi,</p>
<pre><code class="language-cpp">void WriteString( const std::string&amp; Text, int Delay )
{
    int  ScanCode;
    bool IsAlt;
    bool IsCtrl;
    bool IsShift;

    for ( unsigned int i = 0; i &lt; Text.length(); i++)
    {
        ScanCode = VkKeyScan( Text );

        if ( ScanCode &gt;&gt; 8 )
        {
            IsShift = true;
        }
        else
        {
            IsShift = false;
        }

        if ( ScanCode&gt;&gt; 9 )
        {
            IsCtrl = true;
        }
        else
        {
            IsCtrl = false;
        }

		if ( ScanCode&gt;&gt; 10 )
        {
            IsAlt = true;
        }
        else
        {
            IsAlt = false;
        }

        if ( IsShift )
        {
            keybd_event( VK_SHIFT, 0, 0, 0 );
        }

        if ( IsCtrl )
        {
            keybd_event( VK_CONTROL, 0, 0, 0 );
        }

        if ( IsAlt )
        {
            keybd_event( VK_MENU, 0, 0, 0 );
        }

        keybd_event( ScanCode, 0 ,0 ,0 );
        keybd_event( ScanCode, 0, KEYEVENTF_KEYUP, 0 );

        if ( IsShift )
        {
            keybd_event( VK_SHIFT, 0, KEYEVENTF_KEYUP, 0 );
        }

        if ( IsCtrl )
        {
            keybd_event( VK_CONTROL, 0, KEYEVENTF_KEYUP, 0 );
        }

        if ( IsAlt )
        {
            keybd_event( VK_MENU, 0, KEYEVENTF_KEYUP, 0 );
        }

        Sleep( Delay );
    }
}
</code></pre>
<ul>
<li></li>
</ul>
<p>So klappt das, <strong>aber</strong> wie siehts mit [i]Umlauten* aus? Die unterschlägt er mir ganz? Wenn mir da jemand helfen könnte dann hätte ichs <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>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1152317</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1152317</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Tue, 10 Oct 2006 15:45:29 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Wed, 11 Oct 2006 18:05:06 GMT]]></title><description><![CDATA[<p>welches KeyboardLayout verwendest du denn ???</p>
<p>bei mir funktioniert Dein Code auch mit &quot;Umlauten&quot; usw. eigentlich genauo, wie er soll !!!<br />
Im Delphi-Code Beispiel wird auch nichts spezielles mehr &quot;gemacht&quot;... und die KeyCodes sind doch immer gleich... und werden dann nur entsprechend des verwendeten KeyboardLayouts gemapped oder ???</p>
<p>cu veganza</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1153078</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153078</guid><dc:creator><![CDATA[veganza]]></dc:creator><pubDate>Wed, 11 Oct 2006 18:05:06 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Wed, 11 Oct 2006 20:11:47 GMT]]></title><description><![CDATA[<p>Was verwendest du für eine IDE? Also ich nutze Visual Studio 2003.<br />
Und wie testest du das ganze?<br />
Bei mir lässt er die Umlaute immer aus...</p>
<p>Ich hab leider keine Idee <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>
]]></description><link>https://www.c-plusplus.net/forum/post/1153167</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153167</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Wed, 11 Oct 2006 20:11:47 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Wed, 11 Oct 2006 21:02:46 GMT]]></title><description><![CDATA[<p>Hatte mit VS 2003 bis zum formatieren das selbe Problem... Konnte es nicht lösen... <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>
]]></description><link>https://www.c-plusplus.net/forum/post/1153187</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153187</guid><dc:creator><![CDATA[Badestrand]]></dc:creator><pubDate>Wed, 11 Oct 2006 21:02:46 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Wed, 11 Oct 2006 21:49:02 GMT]]></title><description><![CDATA[<p>vorweg: ich kann mir auch nicht so richtig erklären woran es liegen soll !!!</p>
<p>Ich habe noch VS6... kann morgen mal unter VS8 &quot;testen&quot;.</p>
<p>habe hier mal meine &quot;Test-Anwendung&quot; hochgeladen:<br />
<a href="http://ramveg1.100webspace.net/" rel="nofollow">http://ramveg1.100webspace.net/</a></p>
<p>funktioniert die bei Dir ???</p>
<p>im oberen Edit... den Text eingeben... nach dem Click auf &quot;Text 2 KB&quot; wird diese &quot;Keybord-Simulation-Funktion&quot; mit dem Inhalt vom Edit aufgerufen.<br />
Davor setzte ich den Focus ins untere Edit... welches dann die Tastatureingaben &quot;empfängt&quot;.</p>
<p>versuche doch mal vorher per &quot;LoadKeyboardLayout&quot; ein &quot;deutsches&quot; Keyboard-Layout zu laden...</p>
<p>cu veganza</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1153196</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153196</guid><dc:creator><![CDATA[veganza]]></dc:creator><pubDate>Wed, 11 Oct 2006 21:49:02 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Wed, 11 Oct 2006 22:42:17 GMT]]></title><description><![CDATA[<p>Dein Beispiel klappt bei mir wunderbar.<br />
Es liegt wohl daran das mein Visual Studio in der Englischen Sprache ist?<br />
Mit LoadKeyboardLayout kriege ich auch kein Deutsches Keyboard rein oder ich bin zu doof dazu <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>
]]></description><link>https://www.c-plusplus.net/forum/post/1153208</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153208</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Wed, 11 Oct 2006 22:42:17 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Thu, 12 Oct 2006 05:03:00 GMT]]></title><description><![CDATA[<p>VkKeyScanEx</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1153232</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153232</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Thu, 12 Oct 2006 05:03:00 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Thu, 12 Oct 2006 10:32:11 GMT]]></title><description><![CDATA[<p>mmhhhh... scheinbar liegt es wirklich am VS 2003 !!!</p>
<p>ich habe jetzt mal ein neues VS8 ( also 2005 und da habe ich auch eine englische Version) Projekt angelegt. Auch unter VS8 funktioniert es bei mir ohne Probleme mit &quot;öäü...&quot;</p>
<p>Lade mal bevor du die Funktion aufrufst ein deutsches KeyboardLayout.<br />
Entweder gleich am Anfang ( z.B. OnInitDialog() ) oder du stellst die eine Funktion um ( wie <strong>MFK</strong> vorgeschlagen hat ).</p>
<pre><code class="language-cpp">HKL myHKL = NULL;
myHKL = LoadKeyboardLayout( &quot;0x407&quot;, KLF_ACTIVATE ); // 407 ist Deutschland 

if ( myHKL != NULL ) // muß ungleich NULL sein, sonst konnte das Layout nicht geladen werden
</code></pre>
<p>ich kann Dein beschriebenes Verhalten nachvollziehen wenn ich ein &quot;Englisches KeyboardLayout geladen habe ( 0x409 )... dann werden die &quot;Zeichen&quot; nicht dargestellt !!!</p>
<p>Interessant wäre jetzt zu wissen was VS-2003 &quot;falsch macht&quot;... vielleicht ist es wirklich ein Bug ( da <strong>Badestrand</strong> ja auch diese Probleme hatte )... hast du das Service-Pack für VS-2003 installiert ???</p>
<p>Unter den Projekteinstellungen kann man zwar unter &quot;Resources -&gt; General&quot; eine &quot;Culture&quot; einstellen... ich weißt allerdings nicht worauf sich das genau bezieht... da egal ob ich z.B. English oder German oder France auswähle... immer alle Zeichen angezeigt werden !!!</p>
<p>versuche das mal mit dem &quot;LoadKeyboardLayout&quot; auf &quot;0x407&quot; <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>cu veganza</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1153371</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153371</guid><dc:creator><![CDATA[veganza]]></dc:creator><pubDate>Thu, 12 Oct 2006 10:32:11 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Thu, 12 Oct 2006 12:39:35 GMT]]></title><description><![CDATA[<p>Ich habe nun LoadKeyboardLayout ausprobiert gibt aber keinen Fehler aber zeigt immernoch keine Umlaute an. Das selbe bei VkKeyScanEx... Ein Service-Pack hab ich nicht installiert, sollte ich aber mal nachholen und gucken, ob es dann funktioniert. Ansonsten wäre wohl vielleicht jetzt der Zeitpunkt gekommen um auf das neue umzusteigen. Habs hier liegen, aber noch keine Lust gehabt zu installieren... <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/1153539</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153539</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Thu, 12 Oct 2006 12:39:35 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Thu, 12 Oct 2006 13:42:46 GMT]]></title><description><![CDATA[<p>was zeigt eigentlich Deine &quot;Gebietsschema-Anzeige&quot; nach dem Start Deiner Anwendung an ???</p>
<p><a href="http://img140.imageshack.us/img140/9301/gebietsschemakk6.jpg" rel="nofollow">http://img140.imageshack.us/img140/9301/gebietsschemakk6.jpg</a></p>
<p>wenn ich in meiner Test-Anwendung mit LoadKeyboardLayout() auf Englisch umstelle &quot;springt&quot; dieser &quot;Button&quot; ( logisch ) von <strong>DE</strong> auf <strong>EN</strong> um.</p>
<p>ansonsten installiere mal das SP oder VS8... und schau dann mal ob es funktioniert !!!</p>
<p>cu veganza</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1153572</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1153572</guid><dc:creator><![CDATA[veganza]]></dc:creator><pubDate>Thu, 12 Oct 2006 13:42:46 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Fri, 13 Oct 2006 13:13:26 GMT]]></title><description><![CDATA[<p>Steht auf DE... Service Pack 1 hab ich installiert hat nichts geändert...<br />
Und VS8 installieren? Bin jetzt eigentlich nicht so begeistert von, aber mal sehen...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154092</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154092</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Fri, 13 Oct 2006 13:13:26 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Fri, 13 Oct 2006 16:24:29 GMT]]></title><description><![CDATA[<p>IchBinSoRatlos schrieb:</p>
<blockquote>
<p>Steht auf DE... Service Pack 1 hab ich installiert hat nichts geändert...<br />
Und VS8 installieren? Bin jetzt eigentlich nicht so begeistert von, aber mal sehen...</p>
</blockquote>
<p>*Grinz*, das Programm hat sich bei komplett aufgehängt...tja sogar ne Neuinstallation (und ne 'Reperatur') hat nix gebracht :p .</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154281</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154281</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Fri, 13 Oct 2006 16:24:29 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Sat, 14 Oct 2006 08:10:48 GMT]]></title><description><![CDATA[<p>IchBinSoRatlos schrieb:</p>
<blockquote>
<p>Steht auf DE... Service Pack 1 hab ich installiert hat nichts gendert...</p>
</blockquote>
<p>Schade <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>
<p>IchBinSoRatlos schrieb:</p>
<blockquote>
<p>Und VS8 installieren? Bin jetzt eigentlich nicht so begeistert von, aber mal sehen...</p>
</blockquote>
<p>ich habe leider zu lange unter VS6 gearbeitet und auch VS 2003 nur mal probeweise installiert aber nie richtig genutzt !!!<br />
jetzt kommt etwas das &quot;böse Erwachen&quot; für mich... denn VS 2005 ist vom IDE selbst komplett ungewohnt für mich... mein Glück ist, daß die Shortcuts von VS6 noch funktionieren <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 finde das 2005er IDE gelungen... und nach ein paar Projekten werde ich mich auch &quot;umgestellt&quot; haben !!!</p>
<p>von kleineren BUG's bleibst du aber auch im VS-2005 nicht verschont <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="😮"
    /><br />
<a href="http://ramveg1.100webspace.net/" rel="nofollow">http://ramveg1.100webspace.net/</a><br />
siehe <strong>resource_editor_bug.gif</strong></p>
<p>aber das erste SP kommt bestimmt <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>cu veganza</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154356</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154356</guid><dc:creator><![CDATA[veganza]]></dc:creator><pubDate>Sat, 14 Oct 2006 08:10:48 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Fri, 13 Oct 2006 21:03:00 GMT]]></title><description><![CDATA[<p>der unterstrich kommt nur wenn du dein programm per tastatur startest.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154372</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154372</guid><dc:creator><![CDATA[weji]]></dc:creator><pubDate>Fri, 13 Oct 2006 21:03:00 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Sat, 14 Oct 2006 08:36:27 GMT]]></title><description><![CDATA[<p>weji schrieb:</p>
<blockquote>
<p>der unterstrich kommt nur wenn du dein programm per tastatur startest.</p>
</blockquote>
<p>wie meinst du das ???</p>
<p>etwa so ???<br />
der Unterstrich ist vorhanden wenn ich es aus dem IDE mit <strong>STRG + F5</strong> ausführe... <strong>nicht aber</strong> wenn ich ins Build-Verzeichnis per Explorer wechsle und die Anwendung <strong>per Doppelklick</strong> starte <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>
<p>cu veganza</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154454</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154454</guid><dc:creator><![CDATA[veganza]]></dc:creator><pubDate>Sat, 14 Oct 2006 08:36:27 GMT</pubDate></item><item><title><![CDATA[Reply to Tasteneingaben simulieren... on Sat, 14 Oct 2006 12:03:51 GMT]]></title><description><![CDATA[<p>Ich hab mich nun überwunden VS8 zu installieren...<br />
--&gt; Gleiche Probleme, allerdings ist die Version auf Deutsch</p>
<p>Noch irgendwelche Ideen? Vielleicht wäre noch wichtig zu sagen, dass ich das ganze aus einem Konsolenprogramm mache? Der eingelesene Wert ist aber jedenfalls okay!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154580</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154580</guid><dc:creator><![CDATA[IchBinSoRatlos]]></dc:creator><pubDate>Sat, 14 Oct 2006 12:03:51 GMT</pubDate></item></channel></rss>