<?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[Edit-feld:]]></title><description><![CDATA[<p>Hi</p>
<pre><code class="language-cpp">hwndEingabe = CreateWindow(&quot;EDIT&quot;  , &quot;&quot; , WS_CHILD | WS_VISIBLE, 10,  10, 50, 20, hwnd, (HMENU)2, (HINSTANCE) GetWindowLong (hwnd, GWL_HINSTANCE), NULL);
</code></pre>
<p>Was muss ich hier noch ändern, um es:<br />
1. Nicht so flach zu haben (&quot;3D&quot; (wie ne normale eingabe halt))<br />
2. Wo wird der Eingabewert gespeichert??</p>
<p>ps.: Bin noch anfänger in sachen WinApi</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/77962/edit-feld</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 23:04:41 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/77962.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 26 Jun 2004 11:06:20 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Edit-feld: on Sat, 26 Jun 2004 11:06:20 GMT]]></title><description><![CDATA[<p>Hi</p>
<pre><code class="language-cpp">hwndEingabe = CreateWindow(&quot;EDIT&quot;  , &quot;&quot; , WS_CHILD | WS_VISIBLE, 10,  10, 50, 20, hwnd, (HMENU)2, (HINSTANCE) GetWindowLong (hwnd, GWL_HINSTANCE), NULL);
</code></pre>
<p>Was muss ich hier noch ändern, um es:<br />
1. Nicht so flach zu haben (&quot;3D&quot; (wie ne normale eingabe halt))<br />
2. Wo wird der Eingabewert gespeichert??</p>
<p>ps.: Bin noch anfänger in sachen WinApi</p>
]]></description><link>https://www.c-plusplus.net/forum/post/548367</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/548367</guid><dc:creator><![CDATA[RedEagle]]></dc:creator><pubDate>Sat, 26 Jun 2004 11:06:20 GMT</pubDate></item><item><title><![CDATA[Reply to Edit-feld: on Sat, 26 Jun 2004 12:23:22 GMT]]></title><description><![CDATA[<p>1.) WS_BORDER hinzufügen<br />
2.) den Eingabewert musst du dir holen mittels:</p>
<pre><code class="language-cpp">int len = SendMessage (hEdit, EM_GETTEXTLENTH, (WPARAM)0, (LPARAM)0);
char* buffer = new char [len + 1];
SendMessage (hEdit, EM_GETTEXT, (WPARAM)len, (LPARAM)buffer);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/548413</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/548413</guid><dc:creator><![CDATA[fluxy]]></dc:creator><pubDate>Sat, 26 Jun 2004 12:23:22 GMT</pubDate></item></channel></rss>