<?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[RichEdit 2.0 erstellen]]></title><description><![CDATA[<p>Kann mir einer erklären wie ich ein RichEdit-Control v2.0 erstellen kann?</p>
<p>mein bisheriger Code sieht so aus:</p>
<pre><code class="language-cpp">// Inkludierte Header:
#include &lt;windows.h&gt;
#include &lt;RichEdit.h&gt;
// Defintionen der Variablen:
static HWND  hebxInput;    // lokal, in der MainWndProc
HINSTANCE    g_hInst;      // global

#define EBX_INPUT (7000)  // in externe Headerdatei
// g_hInst wurde bei WM_CREATE so initialisiert:
g_hInst = ((LPCREATESTRUCT)lParam)-&gt;hInstance;
// so hab ich das Control erstellt (in der Funktion: MainWndProc, bei WM_CREATE):
    hebxInput = CreateWindowEx
      (
        WS_EX_CLIENTEDGE, TEXT(&quot;RICHEDIT_CLASS&quot;),
        NULL, WS_CHILD | WS_VISIBLE | ES_SAVESEL |
        ES_SUNKEN | ES_MULTILINE | ES_AUTOHSCROLL |
        ES_AUTOVSCROLL, 0, 0, 200, 50, hWnd,
        (HMENU)EBX_INPUT, g_hInst, NULL
      );
</code></pre>
<p>Könnt ihr mir vllt. helfen ?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/149911/richedit-2-0-erstellen</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Jul 2026 17:29:11 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/149911.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 11 Jun 2006 12:24:07 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to RichEdit 2.0 erstellen on Sun, 11 Jun 2006 12:24:07 GMT]]></title><description><![CDATA[<p>Kann mir einer erklären wie ich ein RichEdit-Control v2.0 erstellen kann?</p>
<p>mein bisheriger Code sieht so aus:</p>
<pre><code class="language-cpp">// Inkludierte Header:
#include &lt;windows.h&gt;
#include &lt;RichEdit.h&gt;
// Defintionen der Variablen:
static HWND  hebxInput;    // lokal, in der MainWndProc
HINSTANCE    g_hInst;      // global

#define EBX_INPUT (7000)  // in externe Headerdatei
// g_hInst wurde bei WM_CREATE so initialisiert:
g_hInst = ((LPCREATESTRUCT)lParam)-&gt;hInstance;
// so hab ich das Control erstellt (in der Funktion: MainWndProc, bei WM_CREATE):
    hebxInput = CreateWindowEx
      (
        WS_EX_CLIENTEDGE, TEXT(&quot;RICHEDIT_CLASS&quot;),
        NULL, WS_CHILD | WS_VISIBLE | ES_SAVESEL |
        ES_SUNKEN | ES_MULTILINE | ES_AUTOHSCROLL |
        ES_AUTOVSCROLL, 0, 0, 200, 50, hWnd,
        (HMENU)EBX_INPUT, g_hInst, NULL
      );
</code></pre>
<p>Könnt ihr mir vllt. helfen ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1075572</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1075572</guid><dc:creator><![CDATA[SmartStart]]></dc:creator><pubDate>Sun, 11 Jun 2006 12:24:07 GMT</pubDate></item><item><title><![CDATA[Reply to RichEdit 2.0 erstellen on Sun, 11 Jun 2006 12:47:38 GMT]]></title><description><![CDATA[<p>LoadLibrary...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1075589</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1075589</guid><dc:creator><![CDATA[stichwort]]></dc:creator><pubDate>Sun, 11 Jun 2006 12:47:38 GMT</pubDate></item><item><title><![CDATA[Reply to RichEdit 2.0 erstellen on Sun, 11 Jun 2006 12:58:25 GMT]]></title><description><![CDATA[<p>ok danke, funzt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1075596</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1075596</guid><dc:creator><![CDATA[SmartStart]]></dc:creator><pubDate>Sun, 11 Jun 2006 12:58:25 GMT</pubDate></item></channel></rss>