<?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[hilfe beim hintergrund]]></title><description><![CDATA[<p>hallo,</p>
<p>bin ganz neu in sachen programmierung. habe jetzt mein erstes prog geschrieben und möchte als hintergrund ein bild von einem auto. ist das möglich? wenn ja, kann mir jmd sagen, was und wie ich es in meinen code eingeben kann?</p>
<p>vielen dank im voraus<br />
neuling<br />
code von dev 4.9.8 und win 98 bzw 2000:</p>
<p>#include &lt;windows.h&gt;</p>
<p>LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);</p>
<p>int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,<br />
PSTR szCmdLine, int iCmdShow)<br />
{<br />
MSG msg;<br />
HWND hWnd;<br />
WNDCLASS wc;</p>
<p>const char szAppName[] = &quot;Windows Buttons&quot;;</p>
<p>wc.cbClsExtra = 0;<br />
wc.cbWndExtra = 0;<br />
wc.hbrBackground = (HBRUSH) GetStockObject(LTGRAY_BRUSH);<br />
wc.hCursor = LoadCursor(NULL, IDC_ARROW);<br />
wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);<br />
wc.hInstance = hInstance;<br />
wc.lpfnWndProc = WndProc;<br />
wc.lpszClassName = szAppName;<br />
wc.lpszMenuName = NULL;<br />
wc.style = CS_HREDRAW | CS_VREDRAW;</p>
<p>RegisterClass(&amp;wc);</p>
<p>hWnd = CreateWindow( szAppName,<br />
szAppName,<br />
WS_OVERLAPPEDWINDOW,<br />
CW_USEDEFAULT,<br />
CW_USEDEFAULT,<br />
CW_USEDEFAULT,<br />
CW_USEDEFAULT,<br />
NULL,<br />
NULL,<br />
hInstance,<br />
NULL);</p>
<p>ShowWindow(hWnd, iCmdShow);<br />
UpdateWindow(hWnd);</p>
<p>while (GetMessage(&amp;msg, NULL, 0, 0))<br />
{<br />
TranslateMessage(&amp;msg);<br />
DispatchMessage(&amp;msg);<br />
}</p>
<p>return msg.wParam;<br />
}</p>
<p>LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)<br />
{</p>
<p>static HWND Button;</p>
<p>switch (message)<br />
{<br />
case WM_CREATE:<br />
{</p>
<p>Button1 = CreateWindow( &quot;button&quot;,<br />
&quot;Ampel&quot;,<br />
WS_CHILD | WS_VISIBLE,<br />
0, 0, 0, 0,<br />
hWnd,<br />
NULL,<br />
((LPCREATESTRUCT) lParam) -&gt; hInstance,<br />
NULL);</p>
<p>return 0;<br />
}<br />
case WM_SIZE:<br />
{</p>
<p>MoveWindow(Button, LOWORD(lParam) / 2 - 80, HIWORD(lParam) - 30,<br />
160, 22, TRUE);</p>
<p>return 0;<br />
}</p>
<p>case WM_COMMAND:<br />
{<br />
if (lParam == (LPARAM)Button)<br />
{<br />
if (HIWORD(wParam) == BN_CLICKED)<br />
_outp(0x378,1);<br />
sleep(1400);<br />
_outp(0x378,9);<br />
sleep(1400);<br />
_outp(0x378,13);<br />
sleep(1400);<br />
_outp(0x378,29);<br />
sleep(1400);<br />
_outp(0x378,61);<br />
sleep(1400);<br />
_outp(0x378,2);<br />
sleep(4000);<br />
_outp(0x378,0);<br />
}<br />
if (lParam == (LPARAM)Button2)<br />
{<br />
if (HIWORD(wParam) == BN_CLICKED)<br />
SendMessage(hWnd, WM_CLOSE, 0, 0);<br />
}<br />
return 0;<br />
}<br />
case WM_DESTROY:<br />
{<br />
PostQuitMessage(0);<br />
return 0;<br />
}<br />
}<br />
return DefWindowProc(hWnd, message, wParam, lParam);<br />
}</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/207952/hilfe-beim-hintergrund</link><generator>RSS for Node</generator><lastBuildDate>Sat, 25 Apr 2026 13:20:38 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/207952.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 12 Mar 2008 23:06:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to hilfe beim hintergrund on Wed, 12 Mar 2008 23:06:01 GMT]]></title><description><![CDATA[<p>hallo,</p>
<p>bin ganz neu in sachen programmierung. habe jetzt mein erstes prog geschrieben und möchte als hintergrund ein bild von einem auto. ist das möglich? wenn ja, kann mir jmd sagen, was und wie ich es in meinen code eingeben kann?</p>
<p>vielen dank im voraus<br />
neuling<br />
code von dev 4.9.8 und win 98 bzw 2000:</p>
<p>#include &lt;windows.h&gt;</p>
<p>LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);</p>
<p>int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,<br />
PSTR szCmdLine, int iCmdShow)<br />
{<br />
MSG msg;<br />
HWND hWnd;<br />
WNDCLASS wc;</p>
<p>const char szAppName[] = &quot;Windows Buttons&quot;;</p>
<p>wc.cbClsExtra = 0;<br />
wc.cbWndExtra = 0;<br />
wc.hbrBackground = (HBRUSH) GetStockObject(LTGRAY_BRUSH);<br />
wc.hCursor = LoadCursor(NULL, IDC_ARROW);<br />
wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);<br />
wc.hInstance = hInstance;<br />
wc.lpfnWndProc = WndProc;<br />
wc.lpszClassName = szAppName;<br />
wc.lpszMenuName = NULL;<br />
wc.style = CS_HREDRAW | CS_VREDRAW;</p>
<p>RegisterClass(&amp;wc);</p>
<p>hWnd = CreateWindow( szAppName,<br />
szAppName,<br />
WS_OVERLAPPEDWINDOW,<br />
CW_USEDEFAULT,<br />
CW_USEDEFAULT,<br />
CW_USEDEFAULT,<br />
CW_USEDEFAULT,<br />
NULL,<br />
NULL,<br />
hInstance,<br />
NULL);</p>
<p>ShowWindow(hWnd, iCmdShow);<br />
UpdateWindow(hWnd);</p>
<p>while (GetMessage(&amp;msg, NULL, 0, 0))<br />
{<br />
TranslateMessage(&amp;msg);<br />
DispatchMessage(&amp;msg);<br />
}</p>
<p>return msg.wParam;<br />
}</p>
<p>LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)<br />
{</p>
<p>static HWND Button;</p>
<p>switch (message)<br />
{<br />
case WM_CREATE:<br />
{</p>
<p>Button1 = CreateWindow( &quot;button&quot;,<br />
&quot;Ampel&quot;,<br />
WS_CHILD | WS_VISIBLE,<br />
0, 0, 0, 0,<br />
hWnd,<br />
NULL,<br />
((LPCREATESTRUCT) lParam) -&gt; hInstance,<br />
NULL);</p>
<p>return 0;<br />
}<br />
case WM_SIZE:<br />
{</p>
<p>MoveWindow(Button, LOWORD(lParam) / 2 - 80, HIWORD(lParam) - 30,<br />
160, 22, TRUE);</p>
<p>return 0;<br />
}</p>
<p>case WM_COMMAND:<br />
{<br />
if (lParam == (LPARAM)Button)<br />
{<br />
if (HIWORD(wParam) == BN_CLICKED)<br />
_outp(0x378,1);<br />
sleep(1400);<br />
_outp(0x378,9);<br />
sleep(1400);<br />
_outp(0x378,13);<br />
sleep(1400);<br />
_outp(0x378,29);<br />
sleep(1400);<br />
_outp(0x378,61);<br />
sleep(1400);<br />
_outp(0x378,2);<br />
sleep(4000);<br />
_outp(0x378,0);<br />
}<br />
if (lParam == (LPARAM)Button2)<br />
{<br />
if (HIWORD(wParam) == BN_CLICKED)<br />
SendMessage(hWnd, WM_CLOSE, 0, 0);<br />
}<br />
return 0;<br />
}<br />
case WM_DESTROY:<br />
{<br />
PostQuitMessage(0);<br />
return 0;<br />
}<br />
}<br />
return DefWindowProc(hWnd, message, wParam, lParam);<br />
}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473379</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473379</guid><dc:creator><![CDATA[neuling1000]]></dc:creator><pubDate>Wed, 12 Mar 2008 23:06:01 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 05:27:58 GMT]]></title><description><![CDATA[<p>Bitte beim nächsten mal Cpp-tag's benutzen.</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

char* pcBmp = &quot;xyz.bmp&quot;;
HINSTANCE hInst;

LRESULT CALLBACK WindProcedure(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);

INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
WNDCLASSEX WndCls;
static char szAppName[] = &quot;Proggingmanias Simple Bitmap Window&quot;;
MSG Msg;

hInst = hInstance;
WndCls.cbSize = sizeof(WndCls);
WndCls.style = CS_OWNDC | CS_VREDRAW | CS_HREDRAW;
WndCls.lpfnWndProc = WindProcedure;
WndCls.cbClsExtra = 0;
WndCls.cbWndExtra = 0;
WndCls.hInstance = hInst;
WndCls.hIcon = LoadIcon(NULL, IDI_APPLICATION);
WndCls.hCursor = LoadCursor(NULL, IDC_ARROW);
WndCls.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
WndCls.lpszMenuName = NULL;
WndCls.lpszClassName = szAppName;
WndCls.hIconSm = LoadIcon(hInstance, IDI_APPLICATION);
RegisterClassEx(&amp;WndCls);

CreateWindowEx(WS_EX_OVERLAPPEDWINDOW,
szAppName,
&quot;Proggingmanias Simple Bitmap Window&quot;,
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
NULL,
NULL,
hInstance,
NULL);

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

return (Msg.wParam);
}

LRESULT CALLBACK WindProcedure(HWND hWnd, UINT Msg,
WPARAM wParam, LPARAM lParam)
{
HDC hDC, MemDC;
PAINTSTRUCT Ps;
HBITMAP hbmp;
char buf[256];

RECT r;
GetWindowRect( hWnd, &amp;r );

switch(Msg)
{
case WM_DESTROY:
PostQuitMessage(WM_QUIT);
break;
case WM_PAINT:
hDC = BeginPaint(hWnd, &amp;Ps);

hbmp = (HBITMAP)LoadImage(NULL, pcBmp, IMAGE_BITMAP, 0, 0,
LR_LOADFROMFILE | LR_CREATEDIBSECTION | LR_DEFAULTSIZE);

if ( !hbmp )
{

MessageBox( hWnd, buf, &quot;Picture not found&quot;, MB_OK );
ExitProcess(1);
}

// Create a memory device compatible with the above DC variable
MemDC = CreateCompatibleDC(hDC);
// Select the new bitmap
SelectObject(MemDC, hbmp);

// Copy the bits from the memory DC into the current dc
BitBlt(hDC, 0, 0, r.right, r.bottom, MemDC, 0, 0, SRCCOPY);

// Restore the old bitmap
DeleteDC(MemDC);
DeleteObject(hbmp);
EndPaint(hWnd, &amp;Ps);
break;

default:
return DefWindowProc(hWnd, Msg, wParam, lParam);
}
return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1473399</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473399</guid><dc:creator><![CDATA[pivke]]></dc:creator><pubDate>Thu, 13 Mar 2008 05:27:58 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 06:27:42 GMT]]></title><description><![CDATA[<p>pivke schrieb:</p>
<blockquote>
<p>Bitte beim nächsten mal Cpp-tag's benutzen.</p>
</blockquote>
<p>Bitte beim nächsten Mal Cpp-Tags so hinzufügen, dass die Einrückung nicht verlorengeht. Und den Apostroph weglassen <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>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

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

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

   const char szAppName[]  = &quot;Windows Buttons&quot;;

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

   RegisterClass(&amp;wc);

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

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

   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 HWND Button;

   switch (message)
   {
   case WM_CREATE:
      {

         Button1 = CreateWindow(  &quot;button&quot;,
                                  &quot;Ampel&quot;,
                                  WS_CHILD | WS_VISIBLE,
                                  0, 0, 0, 0,
                                  hWnd,
                                  NULL,
                                  ((LPCREATESTRUCT) lParam) -&gt; hInstance,
                                  NULL);

         return 0;
      }
   case WM_SIZE:
      {

         MoveWindow(Button, LOWORD(lParam) / 2 - 80, HIWORD(lParam) - 30, 
                                                           160, 22, TRUE);

         return 0;
      }

   case WM_COMMAND:
      {
         if (lParam == (LPARAM)Button)
         {
            if (HIWORD(wParam) == BN_CLICKED)
              _outp(0x378,1);
              sleep(1400);
              _outp(0x378,9);
              sleep(1400);
              _outp(0x378,13);
              sleep(1400);
              _outp(0x378,29);
              sleep(1400);
              _outp(0x378,61);
              sleep(1400);
              _outp(0x378,2);
              sleep(4000);
              _outp(0x378,0);
         }
         if (lParam == (LPARAM)Button2)
         {
            if (HIWORD(wParam) == BN_CLICKED)
               SendMessage(hWnd, WM_CLOSE, 0, 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/1473406</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473406</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Thu, 13 Mar 2008 06:27:42 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 09:58:59 GMT]]></title><description><![CDATA[<p>das hat mir sehr weitergeholfen!</p>
<p>vielen dank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473470</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473470</guid><dc:creator><![CDATA[neuling1000]]></dc:creator><pubDate>Thu, 13 Mar 2008 09:58:59 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 10:04:02 GMT]]></title><description><![CDATA[<p>neuling1000 schrieb:</p>
<blockquote>
<p>das hat mir sehr weitergeholfen!</p>
<p>vielen dank</p>
</blockquote>
<p>ironie?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473473</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473473</guid><dc:creator><![CDATA[lippoliv]]></dc:creator><pubDate>Thu, 13 Mar 2008 10:04:02 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 12:28:18 GMT]]></title><description><![CDATA[<p>lippoliv schrieb:</p>
<blockquote>
<p>neuling1000 schrieb:</p>
<blockquote>
<p>das hat mir sehr weitergeholfen!</p>
<p>vielen dank</p>
</blockquote>
<p>ironie?</p>
</blockquote>
<p>Sarkasmus.</p>
<p>Zum Thema...<br />
Hier ein paar Schlagwörter von Funktionen: LoadImage (), StretchBlt () bzw. BitBlt ().</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473576</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473576</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Thu, 13 Mar 2008 12:28:18 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 12:37:42 GMT]]></title><description><![CDATA[<p>Am besten nicht .ico sondern .bmp <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>Du solltest manche Kommentare zur kenntnis nehmen!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473585</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473585</guid><dc:creator><![CDATA[lippoliv]]></dc:creator><pubDate>Thu, 13 Mar 2008 12:37:42 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 13:09:59 GMT]]></title><description><![CDATA[<p>Meinst du mich?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473610</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473610</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Thu, 13 Mar 2008 13:09:59 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 13:18:33 GMT]]></title><description><![CDATA[<p>ich glaube er weiß es selbst nicht, wen er meint <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="😉"
    /> in dem ganzen thread gibts nix mit icons.. nur halt das programmicon... und da sollte man kein bitmap nehmen <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/1473625</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473625</guid><dc:creator><![CDATA[Machine]]></dc:creator><pubDate>Thu, 13 Mar 2008 13:18:33 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 13:19:15 GMT]]></title><description><![CDATA[<p>Machine schrieb:</p>
<blockquote>
<p>ich glaube er weiß es selbst nicht, wen er meint <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="😉"
    /> in dem ganzen thread gibts nix mit icons.. nur halt das programmicon... und da sollte man kein bitmap nehmen <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>
</blockquote>
<p>ja deshalb habe ich auch nochmal nachgefragt...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473628</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473628</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Thu, 13 Mar 2008 13:19:15 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 13:21:50 GMT]]></title><description><![CDATA[<p>Nein sry, das ging an neuling1000</p>
<p>Ich meine Quellcode über 100 Zeilen ohne cpp-tag zu lesen macht ca. 0 sinn.</p>
<p>Da fehlt mindestens die Einrückung.</p>
<p>türlich weis ich nich was ich meine... Hintergrundbilder ohne BMP?<br />
Es geht schließlich um Hintergrundbilder...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473630</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473630</guid><dc:creator><![CDATA[lippoliv]]></dc:creator><pubDate>Thu, 13 Mar 2008 13:21:50 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 13:24:12 GMT]]></title><description><![CDATA[<p>lippoliv schrieb:</p>
<blockquote>
<p>Nein sry, das ging an neuling1000</p>
<p>Ich meine Quellcode über 100 Zeilen ohne cpp-tag zu lesen macht ca. 0 sinn.</p>
<p>Da fehlt mindestens die Einrückung.</p>
<p>türlich weis ich nich was ich meine... Hintergrundbilder ohne BMP?<br />
Es geht schließlich um Hintergrundbilder...</p>
</blockquote>
<p>und wo hat er geschrieben, dass er nen icon als hintergrund nutzen will? <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="😮"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473632</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473632</guid><dc:creator><![CDATA[Machine]]></dc:creator><pubDate>Thu, 13 Mar 2008 13:24:12 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 14:04:25 GMT]]></title><description><![CDATA[<p>Wieso nen Icon als Hintergrund?</p>
<p>Ich wollte mal n Hintergrund machen und habs erst mit .ico versucht, weil die Transparenz können...<br />
Lief aber nich soo geil. <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/1473673</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473673</guid><dc:creator><![CDATA[lippoliv]]></dc:creator><pubDate>Thu, 13 Mar 2008 14:04:25 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 14:05:35 GMT]]></title><description><![CDATA[<p>du sprichst für mich in rätseln... aber egal...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473674</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473674</guid><dc:creator><![CDATA[Machine]]></dc:creator><pubDate>Thu, 13 Mar 2008 14:05:35 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 14:06:10 GMT]]></title><description><![CDATA[<p>Der Thread ist doch schon gelöst, nicht das er noch in den Offtopic rutscht...<br />
<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/1473675</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473675</guid><dc:creator><![CDATA[pivke]]></dc:creator><pubDate>Thu, 13 Mar 2008 14:06:10 GMT</pubDate></item><item><title><![CDATA[Reply to hilfe beim hintergrund on Thu, 13 Mar 2008 14:11:29 GMT]]></title><description><![CDATA[<p>pivke schrieb:</p>
<blockquote>
<p>Der Thread ist doch schon gelöst, nicht das er noch in den Offtopic rutscht...<br />
<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>
</blockquote>
<p>Ist er das? Es wurde die dafür benötigten Funktionen genannt, aber wenn er wirklich neu in der WinAPI-Programmierung ist, dann wird er bestimmt noch die ein oder andere Frage haben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1473681</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1473681</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Thu, 13 Mar 2008 14:11:29 GMT</pubDate></item></channel></rss>