<?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[tab-taste zum wechsel zw. steuerelementen aktivieren]]></title><description><![CDATA[<p>wie bringe ich windows dazu<br />
zwischen meinen steuerelementen<br />
zu wechseln, wenn man tab drückt?<br />
laut msdn sollt es funktionieren<br />
wenn ich beim erstellen der<br />
steuerelemente WS_TABSTOP benutze.<br />
leider zeigt ds bei mii keine wirkung.<br />
muss ich das etwa selber implementieren?</p>
<p>gruß &amp; thx _um</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/67749/tab-taste-zum-wechsel-zw-steuerelementen-aktivieren</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Apr 2026 07:14:46 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/67749.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 11 Mar 2004 01:47:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to tab-taste zum wechsel zw. steuerelementen aktivieren on Thu, 11 Mar 2004 01:48:38 GMT]]></title><description><![CDATA[<p>wie bringe ich windows dazu<br />
zwischen meinen steuerelementen<br />
zu wechseln, wenn man tab drückt?<br />
laut msdn sollt es funktionieren<br />
wenn ich beim erstellen der<br />
steuerelemente WS_TABSTOP benutze.<br />
leider zeigt ds bei mii keine wirkung.<br />
muss ich das etwa selber implementieren?</p>
<p>gruß &amp; thx _um</p>
]]></description><link>https://www.c-plusplus.net/forum/post/478160</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/478160</guid><dc:creator><![CDATA[_um]]></dc:creator><pubDate>Thu, 11 Mar 2004 01:48:38 GMT</pubDate></item><item><title><![CDATA[Reply to tab-taste zum wechsel zw. steuerelementen aktivieren on Thu, 11 Mar 2004 06:12:50 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">while( GetMessage(&amp;msg, NULL, 0, 0) )
     {
        if( !IsDialogMessage(NULL, &amp;msg) )
        {
           TranslateMessage(&amp;msg);
           DispatchMessage(&amp;msg);
        }
     }
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/478170</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/478170</guid><dc:creator><![CDATA[WebFritzi]]></dc:creator><pubDate>Thu, 11 Mar 2004 06:12:50 GMT</pubDate></item><item><title><![CDATA[Reply to tab-taste zum wechsel zw. steuerelementen aktivieren on Thu, 11 Mar 2004 12:45:52 GMT]]></title><description><![CDATA[<p>funktioniert nicht...<br />
hier mal ein bisschen code</p>
<pre><code class="language-cpp">guiObject guiEditField(const char* text, Dimension *dim, HWND parent, HINSTANCE hInstance, int id, int extra, int extra2)
{
	guiObject temp;
	if (dim == NULL)
	{
		temp.iId = temp.iStyle = ST_ERROR;
		return temp;
	}
	temp.hWnd = CreateWindowEx (WS_EX_CLIENTEDGE + extra2, &quot;EDIT&quot;, NULL,
								WS_TABSTOP | WS_VISIBLE | WS_CHILD + extra,
								dim-&gt;x, dim-&gt;y, dim-&gt;w, dim-&gt;h,
								parent, (HMENU)id, hInstance, 0);
	if (temp.hWnd != NULL)
	{
		temp.iId = id;
		temp.iStyle = ST_EDIT;
	}
	else
		temp.iId = temp.iStyle = ST_ERROR;

	return temp;

}//&lt;- guiEditField

...
	//mainloop
	while(GetMessage(&amp;msg, NULL, 0U, 0U))
	{
		if (!IsDialogMessage(NULL, &amp;msg))
		{
			TranslateMessage(&amp;msg);
			DispatchMessage(&amp;msg);
		}
    }
</code></pre>
<p>ne idee worans liegt?<br />
gruß _um</p>
]]></description><link>https://www.c-plusplus.net/forum/post/478222</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/478222</guid><dc:creator><![CDATA[_um]]></dc:creator><pubDate>Thu, 11 Mar 2004 12:45:52 GMT</pubDate></item><item><title><![CDATA[Reply to tab-taste zum wechsel zw. steuerelementen aktivieren on Thu, 11 Mar 2004 12:51:20 GMT]]></title><description><![CDATA[<p>hat sich erledigt <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 />
so gehts:</p>
<pre><code class="language-cpp">while( GetMessage(&amp;msg, NULL, 0, 0) )
     {
        if( !IsDialogMessage(hwndMainFrame, &amp;msg) )
        {
           TranslateMessage(&amp;msg);
           DispatchMessage(&amp;msg);
        }
     }
</code></pre>
<p>thx.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/478228</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/478228</guid><dc:creator><![CDATA[_um]]></dc:creator><pubDate>Thu, 11 Mar 2004 12:51:20 GMT</pubDate></item></channel></rss>