<?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[bitmap]]></title><description><![CDATA[<p>sorry für diese noob frage, aber ich hab bei google gesucht,<br />
die suchfunktion benutzt und hab einfach kein tut oder ein code<br />
gefunden aus dem ich wirklich erschleißen konnte wie man ein bitmap<br />
darstellt...</p>
<p>OS: WinXP</p>
<p>Danke für alle antworten</p>
<p>MFG NULL</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/110790/bitmap</link><generator>RSS for Node</generator><lastBuildDate>Wed, 01 Jul 2026 00:32:17 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/110790.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 24 May 2005 15:48:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 15:48:16 GMT]]></title><description><![CDATA[<p>sorry für diese noob frage, aber ich hab bei google gesucht,<br />
die suchfunktion benutzt und hab einfach kein tut oder ein code<br />
gefunden aus dem ich wirklich erschleißen konnte wie man ein bitmap<br />
darstellt...</p>
<p>OS: WinXP</p>
<p>Danke für alle antworten</p>
<p>MFG NULL</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795167</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795167</guid><dc:creator><![CDATA[NULL]]></dc:creator><pubDate>Tue, 24 May 2005 15:48:16 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 16:05:15 GMT]]></title><description><![CDATA[<p>In der WinAPI-FAQ gibts &quot;Bitmap speichern&quot; falls du das meinst...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795180</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795180</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Tue, 24 May 2005 16:05:15 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 17:15:31 GMT]]></title><description><![CDATA[<p>nein, einfach nur ein bitmap aus recource oder von nem file laden<br />
und in nem fenster darsellen, draufmalen, ...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795218</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795218</guid><dc:creator><![CDATA[NULL]]></dc:creator><pubDate>Tue, 24 May 2005 17:15:31 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 17:29:00 GMT]]></title><description><![CDATA[<p>LoadBitmap, CreateCompatibleDC -&gt; SelectObject -&gt; BitBlt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795228</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795228</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Tue, 24 May 2005 17:29:00 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 18:39:20 GMT]]></title><description><![CDATA[<p>Danke für die antwort, aber kann mir jemand sagen was ich falsch gemacht habe? :</p>
<pre><code>#include &lt;windows.h&gt;
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

HINSTANCE hInst;

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    PSTR szCmdLine, int iCmdShow)
{
    HWND     hWnd;
    MSG      msg;
    WNDCLASS wc;

    const char szAppName[] = &quot;bitmapT&quot;;

    wc.style          = CS_HREDRAW | CS_VREDRAW;
    wc.lpfnWndProc    = WndProc;
    wc.cbClsExtra     = 0;
    wc.cbWndExtra     = 0;
    wc.hInstance      = hInstance;
    wc.hIcon          = LoadIcon(NULL, IDI_APPLICATION);
    wc.hCursor        = LoadCursor(NULL, IDC_ARROW);
    wc.hbrBackground  = (HBRUSH)GetStockObject(WHITE_BRUSH);
    wc.lpszMenuName   = NULL;
    wc.lpszClassName  = szAppName;

    RegisterClass(&amp;wc);

    hWnd = CreateWindow( szAppName,
                         &quot;bitmapT&quot;,
                         WS_OVERLAPPEDWINDOW,
                         CW_USEDEFAULT,
                         CW_USEDEFAULT,
                         CW_USEDEFAULT,
                         CW_USEDEFAULT,
                         NULL,
                         NULL,
                         hInstance,
                         NULL );

    ShowWindow(hWnd, iCmdShow);
    UpdateWindow(hWnd);

	hInst = hInstance;

    while(GetMessage(&amp;msg, NULL, 0, 0))
    {
        TranslateMessage(&amp;msg);
        DispatchMessage(&amp;msg);
    }

    return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
	HBITMAP hBmp;
	HDC memdc = GetDC(hWnd);
	HDC dc = CreateCompatibleDC(memdc);

    switch(message)
    {
    case WM_CREATE:
        {
			hBmp = LoadBitmap(hInst, &quot;..\\test.bmp&quot;);
			SelectObject(dc, hBmp);

            return 0;
        }

	case WM_PAINT:
		{
			BitBlt(dc, 0, 0, 0, 0, memdc, 0, 0, SRCCOPY);

			return 0;
		}

	case WM_CLOSE:
		{
			PostQuitMessage(0);

			return 0;
		}

    case WM_DESTROY:
        {
            PostQuitMessage(0);
            return 0;
        }
    }
    return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/795270</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795270</guid><dc:creator><![CDATA[NULL]]></dc:creator><pubDate>Tue, 24 May 2005 18:39:20 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 18:43:59 GMT]]></title><description><![CDATA[<p>die DC's musst du direkt bei Paint ermitteln, um einen aktuellen zu erhalten, und dann nicht mit GetDC, sondern zwingend mit BeginPaint.</p>
<p>edit: und hBmp muss static sein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795272</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795272</guid><dc:creator><![CDATA[Herr-Vorragend]]></dc:creator><pubDate>Tue, 24 May 2005 18:43:59 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 18:45:20 GMT]]></title><description><![CDATA[<p>NULL schrieb:</p>
<blockquote>
<p>Danke für die antwort, aber kann mir jemand sagen was ich falsch gemacht habe? :</p>
</blockquote>
<p>findest nicht das dieses keine ausreichende fehlerbeschreibung ist?</p>
<p>ohne micht weiter damit beschäftigt zu haben würde ich darauf tippen denn<br />
deine var weden zerstört wenn du den scope verlässt<br />
[code]<br />
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)<br />
{<br />
<strong>static</strong> HBITMAP hBmp;<br />
<strong>static</strong> HDC memdc = GetDC(hWnd);<br />
<strong>static</strong> HDC dc = CreateCompatibleDC(memdc);<br />
// ..<br />
[code]</p>
<p>aufräumen nicht vergessen</p>
<p>[edit]<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /> zu langsam</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795273</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795273</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Tue, 24 May 2005 18:45:20 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 18:45:14 GMT]]></title><description><![CDATA[<p>sorry, die parameter 7 und 8 von BitBlt sind natürlich gefüllt (mit 32),<br />
was aber auch nicht zur lösung geführt hat...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795275</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795275</guid><dc:creator><![CDATA[NULL]]></dc:creator><pubDate>Tue, 24 May 2005 18:45:14 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 18:51:54 GMT]]></title><description><![CDATA[<p>Der DC, den du erzeugst, wird bei jedem Aufruf der WndProc neu erzeugt und damit die Bitmap in einen hinein selektiert (dieser geht verloren) und dann bei einem neuen Durchlauf der Inhalt eines neuen (&quot;leeren&quot;) DC in den Zeichen-DC geblittet.</p>
<p>Ich versuche mal zu korrigieren:</p>
<pre><code class="language-cpp">LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    HBITMAP hBmp;
    static HDC DC = GetDC(hWnd);
    static HDC MemDC = CreateCompatibleDC(DC);

    switch(message)
    {
    case WM_CREATE:
        {
            hBmp = LoadBitmap(hInst, &quot;..\\test.bmp&quot;);
            SelectObject(MemDC, hBmp);

            return 0;
        }

    case WM_PAINT:
        {
            BitBlt(DC, 0, 0, 0, 0, MemDC, 0, 0, SRCCOPY);

            return 0;
        }

    case WM_CLOSE:
        {
            PostQuitMessage(0);

            return 0;
        }

    case WM_DESTROY:
        {
            PostQuitMessage(0);
            return 0;
        }
    }
    return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
<p>Ohne Garantie <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>Gruss,<br />
DeSoVoDaMu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795279</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795279</guid><dc:creator><![CDATA[DeSoVoDaMu]]></dc:creator><pubDate>Tue, 24 May 2005 18:51:54 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 18:55:09 GMT]]></title><description><![CDATA[<p>dreifach hält besser <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="😃"
    /> <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/795282</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795282</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Tue, 24 May 2005 18:55:09 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 18:57:44 GMT]]></title><description><![CDATA[<p>Hab ich mir auch gedacht^^<br />
Aber nebenbei: die Bmp muss nicht zwingend static sein oder? Und es wuerde reichen, wenn man sie nur in dem WM_CREATE Zweig erzeugt afaik. Nur als &quot;Verbesserungsvorschlag&quot; <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/795283</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795283</guid><dc:creator><![CDATA[DeSoVoDaMu]]></dc:creator><pubDate>Tue, 24 May 2005 18:57:44 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 19:00:31 GMT]]></title><description><![CDATA[<p>das geht doch gar nicht, oder? ich hätts so gemacht:</p>
<pre><code class="language-cpp">LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 
{ 
    static HBITMAP hBmp; 
    HDC DC;
    HDC MemDC;
    PAINTSTRUCT ps;

    switch(message) 
    { 
    case WM_CREATE: 
        { 
            hBmp = LoadBitmap(hInst, &quot;..\\test.bmp&quot;); 

            return 0; 
        } 

    case WM_PAINT: 
        { 
            DC = BeginPaint(hWnd, &amp;ps);
            MemDC = CreateCompatibleDC(DC);
            SelectObject(MemDC, hBmp); 
            BitBlt(DC, 0, 0, 0, 0, MemDC, 0, 0, SRCCOPY); 

            EndPaint(hWnd, &amp;ps);

            return 0; 
        } 

    case WM_CLOSE: 
        { 
            PostQuitMessage(0); 

            return 0; 
        } 

    case WM_DESTROY: 
        { 
            PostQuitMessage(0); 
            return 0; 
        } 
    } 
    return DefWindowProc(hWnd, message, wParam, lParam); 
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/795285</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795285</guid><dc:creator><![CDATA[Herr-Vorragend]]></dc:creator><pubDate>Tue, 24 May 2005 19:00:31 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 19:09:28 GMT]]></title><description><![CDATA[<p>Also irgendwie funktionierts trozdem nicht...<br />
scheint zwar alles richtig zu sein, aber er zeigt einfach kein bild an.</p>
<p>mal abgesehen von den parametern 4 und 5 bei bitblt die verändert werden mussten <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/795296</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795296</guid><dc:creator><![CDATA[NULL]]></dc:creator><pubDate>Tue, 24 May 2005 19:09:28 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 19:46:34 GMT]]></title><description><![CDATA[<p>(regestrierter NULL <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>Eben hab ich gemerkt das LoadBitmap bei mir NULL zurück gibt,<br />
es funktioniert jedoch weder wenn ich den genauen pfad angebe, noch mit ..\,<br />
noch wenn ich die exe in die directory vom bitmap kopiere und .\\ oder einfach nur<br />
den namen vom bitmap als parameter angebe...</p>
<p>irgendwelche ideen?</p>
<p>EDIT:</p>
<p>Jetzt hab ich mal GetLastError mit eigebaut und bekomme errorcode 1814<br />
(The specified resource name cannot be found in the image file.)</p>
<p>obwohl der direckte Pfad angegeben ist... <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>
]]></description><link>https://www.c-plusplus.net/forum/post/795315</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795315</guid><dc:creator><![CDATA[-*NULL*-]]></dc:creator><pubDate>Tue, 24 May 2005 19:46:34 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 19:46:10 GMT]]></title><description><![CDATA[<p>loadbitmap lädt von einer resource<br />
was du brauchst ist<br />
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/introductiontoresources/resourcereference/resourcefunctions/loadimage.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/introductiontoresources/resourcereference/resourcefunctions/loadimage.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/795318</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795318</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Tue, 24 May 2005 19:46:10 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 19:57:53 GMT]]></title><description><![CDATA[<p>soweit ich weiß nicht nur, oder?</p>
<p>&quot;The MAKEINTRESOURCE macro can be used to create this value.&quot;</p>
<p>EDIT:</p>
<p>Habs mit resource versucht und des geht auch net... immernoch der selbe errorcode</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795319</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795319</guid><dc:creator><![CDATA[-*NULL*-]]></dc:creator><pubDate>Tue, 24 May 2005 19:57:53 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 21:06:39 GMT]]></title><description><![CDATA[<p>-[NULL]- schrieb:</p>
<blockquote>
<p>Habs mit resource versucht und des geht auch net... immernoch der selbe errorcode</p>
</blockquote>
<p>Wie sieht denn jetzt dein LoadBitmap bzw. LoadImage-Aufruf aus und ist im ersten Fall hInst auch ein gültiges Instanz-Handle?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795382</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795382</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Tue, 24 May 2005 21:06:39 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Tue, 24 May 2005 21:49:57 GMT]]></title><description><![CDATA[<p>LoadBitmap() funktioniert nur mit Resourcen. Auch der Satz mit MAKEINTRESOURCE bezieht sich auf Bitmaps in Resourcen...</p>
<p>Mit LoadImage() sieht es so aus:</p>
<pre><code class="language-cpp">HBITMAP bmp;
bmp=(HBITMAP)LoadImage(NULL,&quot;c:\\blupp.bmp&quot;,IMAGE_BITMAP,0,0,LR_LOADFROMFILE);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/795424</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795424</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Tue, 24 May 2005 21:49:57 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Wed, 25 May 2005 11:52:30 GMT]]></title><description><![CDATA[<p>Ha, thx... mit LoadImage funktionierts jetzt endlich...</p>
<p>hier nochmal der ganze quellcode... :</p>
<pre><code>#include &lt;windows.h&gt;
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

HINSTANCE hInst;

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    PSTR szCmdLine, int iCmdShow)
{
    HWND     hWnd;
    MSG      msg;
    WNDCLASS wc;

    const char szAppName[] = &quot;bitmapT&quot;;

    wc.style          = CS_HREDRAW | CS_VREDRAW;
    wc.lpfnWndProc    = WndProc;
    wc.cbClsExtra     = 0;
    wc.cbWndExtra     = 0;
    wc.hInstance      = hInstance;
    wc.hIcon          = LoadIcon(NULL, IDI_APPLICATION);
    wc.hCursor        = LoadCursor(NULL, IDC_ARROW);
    wc.hbrBackground  = (HBRUSH)GetStockObject(WHITE_BRUSH);
    wc.lpszMenuName   = NULL;
    wc.lpszClassName  = szAppName;

    RegisterClass(&amp;wc);

    hWnd = CreateWindow( szAppName,
                         &quot;bitmapT&quot;,
                         WS_OVERLAPPEDWINDOW,
                         CW_USEDEFAULT,
                         CW_USEDEFAULT,
                         CW_USEDEFAULT,
                         CW_USEDEFAULT,
                         NULL,
                         NULL,
                         hInstance,
                         NULL );

    ShowWindow(hWnd, iCmdShow);
    UpdateWindow(hWnd);

	hInst = hInstance;

    while(GetMessage(&amp;msg, NULL, 0, 0))
    {
        TranslateMessage(&amp;msg);
        DispatchMessage(&amp;msg);
    }

    return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    static HBITMAP hBmp;
    HDC DC;
    HDC MemDC;
    PAINTSTRUCT ps;

    switch(message)
    {
    case WM_CREATE:
        {
            hBmp = (HBITMAP) LoadImage(hInst, &quot;D:\\Programme\\Microsoft Visual Studio\\MyProjects\\bitmapT\\test.bmp&quot;, IMAGE_BITMAP,0,0,LR_LOADFROMFILE);

            return 0;
        }

    case WM_PAINT:
        {
            DC = BeginPaint(hWnd, &amp;ps);
            MemDC = CreateCompatibleDC(DC);
            SelectObject(MemDC, hBmp);
            BitBlt(DC, 0, 0, 32, 37, MemDC, 0, 0, SRCCOPY);

            EndPaint(hWnd, &amp;ps);

            return 0;
        }

    case WM_CLOSE:
        {
            PostQuitMessage(0);

            return 0;
        }

    case WM_DESTROY:
        {
            PostQuitMessage(0);
            return 0;
        }
    }
    return DefWindowProc(hWnd, message, wParam, lParam);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/795763</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795763</guid><dc:creator><![CDATA[-*NULL*-]]></dc:creator><pubDate>Wed, 25 May 2005 11:52:30 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Wed, 25 May 2005 12:07:51 GMT]]></title><description><![CDATA[<p>ehem... trotzdem merke ich gerade das das Bitmap sofort verschwindet<br />
wenn ich das fenster mal minimiere oder maximiere...<br />
obwohl BitBlt doch in WM_PAINT steht...</p>
<p><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>
]]></description><link>https://www.c-plusplus.net/forum/post/795777</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795777</guid><dc:creator><![CDATA[-*NULL*-]]></dc:creator><pubDate>Wed, 25 May 2005 12:07:51 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Wed, 25 May 2005 12:32:39 GMT]]></title><description><![CDATA[<p>Evtl. liegt es daran, dass du MemDC in WM_PAINT nicht wieder frei gibst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795804</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795804</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Wed, 25 May 2005 12:32:39 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Wed, 25 May 2005 14:06:22 GMT]]></title><description><![CDATA[<p>also, ich hab jetzt mal ReleaseDC(hWnd, MemDC); eingefügt und verändert hat sich leider nichts...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795905</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795905</guid><dc:creator><![CDATA[-*NULL*-]]></dc:creator><pubDate>Wed, 25 May 2005 14:06:22 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Wed, 25 May 2005 14:43:03 GMT]]></title><description><![CDATA[<blockquote>
<p>When you no longer need the memory DC, call the <strong>DeleteDC</strong> function.</p>
</blockquote>
<p>Also DeleteDC(MemDC); <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/795954</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795954</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Wed, 25 May 2005 14:43:03 GMT</pubDate></item><item><title><![CDATA[Reply to bitmap on Wed, 25 May 2005 15:22:17 GMT]]></title><description><![CDATA[<p>Danke, ich hab mich halt noch net extrem mit der winapi beschäftigt...<br />
werd mir jetzt mal n buch kaufen... <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>PS.:</p>
<p>Es geht</p>
]]></description><link>https://www.c-plusplus.net/forum/post/795999</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/795999</guid><dc:creator><![CDATA[-*NULL*-]]></dc:creator><pubDate>Wed, 25 May 2005 15:22:17 GMT</pubDate></item></channel></rss>