<?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[StatusBar-Höhe festlegen]]></title><description><![CDATA[<p>Hallo Community,</p>
<p>wie kann ich die Höhe einer mit CreateWindowEx() erstellten StatusBar, und die Textgröße eines PARTS darin ändern?</p>
<p>Hier mein Code soweit:</p>
<pre><code class="language-cpp">HWND hStatusBar1 = CreateWindowEx(0L, STATUSCLASSNAME, NULL, 
	WS_CHILD | WS_BORDER | WS_VISIBLE, -100, -100, 10, 10, hFenster, 
	(HMENU)100, hInstance, NULL);

int parts[1] = {500};
SendMessage(hStatusBar1, SB_SETPARTS, 1, (LPARAM)&amp;parts);
SendMessage(hStatusBar1, SB_SETTEXT, 0, (LPARAM)&quot;ASDF&quot;); 
//Textgröße von diesem Element ^ soll verändert werden
</code></pre>
<p>Danke im Voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/285284/statusbar-höhe-festlegen</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Apr 2026 16:29:14 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/285284.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 17 Apr 2011 16:36:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 16:36:49 GMT]]></title><description><![CDATA[<p>Hallo Community,</p>
<p>wie kann ich die Höhe einer mit CreateWindowEx() erstellten StatusBar, und die Textgröße eines PARTS darin ändern?</p>
<p>Hier mein Code soweit:</p>
<pre><code class="language-cpp">HWND hStatusBar1 = CreateWindowEx(0L, STATUSCLASSNAME, NULL, 
	WS_CHILD | WS_BORDER | WS_VISIBLE, -100, -100, 10, 10, hFenster, 
	(HMENU)100, hInstance, NULL);

int parts[1] = {500};
SendMessage(hStatusBar1, SB_SETPARTS, 1, (LPARAM)&amp;parts);
SendMessage(hStatusBar1, SB_SETTEXT, 0, (LPARAM)&quot;ASDF&quot;); 
//Textgröße von diesem Element ^ soll verändert werden
</code></pre>
<p>Danke im Voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2050651</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050651</guid><dc:creator><![CDATA[Ultrablack]]></dc:creator><pubDate>Sun, 17 Apr 2011 16:36:49 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 16:48:09 GMT]]></title><description><![CDATA[<p>naja ich würde es mal mit <a href="http://msdn.microsoft.com/en-us/library/ms632642" rel="nofollow">WM_SETFONT</a> probieren</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2050654</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050654</guid><dc:creator><![CDATA[LowFly]]></dc:creator><pubDate>Sun, 17 Apr 2011 16:48:09 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 17:10:13 GMT]]></title><description><![CDATA[<p>Danke LowFly funktioniert soweit, und wie kann ich die Höhe der StatusBar verändern? <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="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2050663</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050663</guid><dc:creator><![CDATA[Ultrablack]]></dc:creator><pubDate>Sun, 17 Apr 2011 17:10:13 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 17:15:06 GMT]]></title><description><![CDATA[<p>Steht in der MSDN Doku.</p>
<p>SB_SETMINHEIGHT<br />
Ansonsten alles weitere hier:<br />
<a href="http://msdn.microsoft.com/en-us/library/bb760728(VS.85).aspx#Size_and_Height" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb760728(VS.85).aspx#Size_and_Height</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2050668</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050668</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Sun, 17 Apr 2011 17:15:06 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 17:15:46 GMT]]></title><description><![CDATA[<p><a href="http://msdn.microsoft.com/en-us/library/bb760728(VS.85).aspx#Size_and_Height" rel="nofollow">kuckst du hier</a> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2050670</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050670</guid><dc:creator><![CDATA[LowFly]]></dc:creator><pubDate>Sun, 17 Apr 2011 17:15:46 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 17:48:09 GMT]]></title><description><![CDATA[<p>Vorweg: mein Fenster hat eine festgelegte Größe.</p>
<p>Also definierte ich die Höhe der StatusBar mit:</p>
<pre><code class="language-cpp">SendMessage(hStatusBar1, SB_SETMINHEIGHT, 150, 0);
</code></pre>
<p>jedoch verändert sich die Größe nicht. <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>
<p>Und kann ich WM_SIZE überhaupt bei einem Fenster mit fixer Größe anwenden?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2050698</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050698</guid><dc:creator><![CDATA[Ultrablack]]></dc:creator><pubDate>Sun, 17 Apr 2011 17:48:09 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 18:16:05 GMT]]></title><description><![CDATA[<p>WM_SIZE wird an deine nachrichtenschleife deines programmes gesendet nachdem der benutzer die größe des programmes geändert hat. alternativ dazu WM_SIZEING.<br />
du könntest mal <a href="http://msdn.microsoft.com/en-us/library/ff468919" rel="nofollow">movewindow, setwindowplacement o. setwindowpos</a> probieren.<br />
wobei ich zu movewindow tendiere, das benutze ich immer sobald ich eine fenstergröße nachträglich ändern will. bei den anderen beiden funktionen hab ich immer meine probleme.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2050722</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050722</guid><dc:creator><![CDATA[LowFly]]></dc:creator><pubDate>Sun, 17 Apr 2011 18:16:05 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Sun, 17 Apr 2011 19:10:25 GMT]]></title><description><![CDATA[<p>LowFly schrieb:</p>
<blockquote>
<p>WM_SIZE wird an deine nachrichtenschleife deines programmes gesendet nachdem der benutzer die größe des programmes geändert hat. alternativ dazu WM_SIZEING.<br />
du könntest mal <a href="http://msdn.microsoft.com/en-us/library/ff468919" rel="nofollow">movewindow, setwindowplacement o. setwindowpos</a> probieren.<br />
wobei ich zu movewindow tendiere, das benutze ich immer sobald ich eine fenstergröße nachträglich ändern will. bei den anderen beiden funktionen hab ich immer meine probleme.</p>
</blockquote>
<p>Die StatusBar bewegt sich trotz MoveWindow keinen Millimeter / verändert die Größe nicht: <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<pre><code class="language-cpp">HWND hStatusBar1 = CreateWindowEx( 
		0L,									
		STATUSCLASSNAME,					
		NULL,								
		WS_CHILD | WS_VISIBLE,				
		-100, -100, 10, 10,					
		hForm1,								
		(HMENU)100,							
		hInstance,                          
	NULL);								

	int parts[1] = {500};
	HANDLE hFont = CreateFont(14, 0, 0, 0, FW_DONTCARE, FALSE, FALSE,
		FALSE, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
		DEFAULT_QUALITY, DEFAULT_PITCH | FF_SWISS, &quot;Arial&quot;);

	SendMessage(hStatusBar1, SB_SETPARTS, 1, (LPARAM)&amp;parts);
	SendMessage(hStatusBar1, SB_SETTEXT, 0, (LPARAM)&quot;ASDF&quot;);
	SendMessage(hStatusBar1, WM_SETFONT, (WPARAM)hFont, true);
	MoveWindow(hStatusBar1, 0, 0, 50, 155, true);
	UpdateWindow(hStatusBar1);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2050779</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2050779</guid><dc:creator><![CDATA[Ultrablack]]></dc:creator><pubDate>Sun, 17 Apr 2011 19:10:25 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Mon, 18 Apr 2011 15:47:19 GMT]]></title><description><![CDATA[<p>der einzigste grund den ich mir jetzt vorstellen könnte warum das nicht klappt, ist das du die x &amp; y koordinaten der statusbar bei movewindow mit 0,0 angegeben hast. die wären ja in der oberen linken ecke und dort ist die statusbar niemals nicht zu finden. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
<p>hol dir zuerst das rechteck der statusbar mit <a href="http://msdn.microsoft.com/en-us/library/bb760748" rel="nofollow">SB_GETRECT</a> und setze davon die x &amp; y koordinaten bei movewindow ein.</p>
<p>ansonsten bin ich ratlos. ich kann dir nur sagen das ich movewindow für alle unten aufgeführten steuerelemente verwende und es überall funzt. (alle arten von Buttons, Listbox, Liste, Combobox, Tree, Tab, Edit, Richedit)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2051211</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2051211</guid><dc:creator><![CDATA[LowFly]]></dc:creator><pubDate>Mon, 18 Apr 2011 15:47:19 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Tue, 19 Apr 2011 08:42:31 GMT]]></title><description><![CDATA[<p>SB_SETMINHEIGHT funktioniert sehr wohl.<br />
Man sollte einfach machn was in der MSDN steht.</p>
<p>1. Statusbar erzeugen und parts setzen + SB_SETMINHEIGHT:<br />
Code ist aus derMSDN + Aufruf von SB_SETMINHEIGHT</p>
<pre><code class="language-cpp">HWND DoCreateStatusBar(HWND hwndParent, int idStatus, HINSTANCE
                      hinst, int cParts)
{
    HWND hwndStatus;
    RECT rcClient;
    HLOCAL hloc;
    PINT paParts;
    int i, nWidth;

    // Ensure that the common control DLL is loaded.
    InitCommonControls();

    // Create the status bar.
    hwndStatus = CreateWindowEx(
        0,                       // no extended styles
        STATUSCLASSNAME,         // name of status bar class
        (PCTSTR) NULL,           // no text when first created
        SBARS_SIZEGRIP |         // includes a sizing grip
        WS_CHILD | WS_VISIBLE,   // creates a visible child window
        0, 0, 0, 0,              // ignores size and position
        hwndParent,              // handle to parent window
        (HMENU) idStatus,       // child window identifier
        hinst,                   // handle to application instance
        NULL);                   // no window creation data

	SendMessage(hwndStatus, SB_SETMINHEIGHT, 50, 0);

    // Get the coordinates of the parent window's client area.
    GetClientRect(hwndParent, &amp;rcClient);

    // Allocate an array for holding the right edge coordinates.
    hloc = LocalAlloc(LHND, sizeof(int) * cParts);
    paParts = (PINT) LocalLock(hloc);

    // Calculate the right edge coordinate for each part, and
    // copy the coordinates to the array.
    nWidth = rcClient.right / cParts;
    for (i = 0; i &lt; cParts; i++) { 
       paParts[i] = nWidth;
       nWidth += nWidth;
    }

    // Tell the status bar to create the window parts.
    SendMessage(hwndStatus, SB_SETPARTS, (WPARAM) cParts, (LPARAM)
               paParts);

    // Free the array, and return.
    LocalUnlock(hloc);
    LocalFree(hloc);
    return hwndStatus;
}
</code></pre>
<p>2: WM_SIZE Handler im Parent einbauen:<br />
IDC_MAIN_STATUS ist bei mir die ID des Statusbars... siehe da</p>
<pre><code class="language-cpp">case WM_SIZE:
		// Auto-resize statusbar 
		MoveWindow(hWnd,0,0,0,0,FALSE);
		break;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2051451</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2051451</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Tue, 19 Apr 2011 08:42:31 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Tue, 19 Apr 2011 16:52:01 GMT]]></title><description><![CDATA[<p>Martin Richter schrieb:</p>
<blockquote>
<p>SB_SETMINHEIGHT funktioniert sehr wohl.<br />
Man sollte einfach machn was in der MSDN steht.</p>
<p>1. Statusbar erzeugen und parts setzen + SB_SETMINHEIGHT:<br />
Code ist aus derMSDN + Aufruf von SB_SETMINHEIGHT</p>
<pre><code class="language-cpp">HWND DoCreateStatusBar(HWND hwndParent, int idStatus, HINSTANCE
                      hinst, int cParts)
{
    HWND hwndStatus;
    RECT rcClient;
    HLOCAL hloc;
    PINT paParts;
    int i, nWidth;

    // Ensure that the common control DLL is loaded.
    InitCommonControls();

    // Create the status bar.
    hwndStatus = CreateWindowEx(
        0,                       // no extended styles
        STATUSCLASSNAME,         // name of status bar class
        (PCTSTR) NULL,           // no text when first created
        SBARS_SIZEGRIP |         // includes a sizing grip
        WS_CHILD | WS_VISIBLE,   // creates a visible child window
        0, 0, 0, 0,              // ignores size and position
        hwndParent,              // handle to parent window
        (HMENU) idStatus,       // child window identifier
        hinst,                   // handle to application instance
        NULL);                   // no window creation data

	SendMessage(hwndStatus, SB_SETMINHEIGHT, 50, 0);

    // Get the coordinates of the parent window's client area.
    GetClientRect(hwndParent, &amp;rcClient);

    // Allocate an array for holding the right edge coordinates.
    hloc = LocalAlloc(LHND, sizeof(int) * cParts);
    paParts = (PINT) LocalLock(hloc);

    // Calculate the right edge coordinate for each part, and
    // copy the coordinates to the array.
    nWidth = rcClient.right / cParts;
    for (i = 0; i &lt; cParts; i++) { 
       paParts[i] = nWidth;
       nWidth += nWidth;
    }

    // Tell the status bar to create the window parts.
    SendMessage(hwndStatus, SB_SETPARTS, (WPARAM) cParts, (LPARAM)
               paParts);

    // Free the array, and return.
    LocalUnlock(hloc);
    LocalFree(hloc);
    return hwndStatus;
}
</code></pre>
<p>2: WM_SIZE Handler im Parent einbauen:<br />
IDC_MAIN_STATUS ist bei mir die ID des Statusbars... siehe da</p>
<pre><code class="language-cpp">case WM_SIZE:
		// Auto-resize statusbar 
		MoveWindow(hWnd,0,0,0,0,FALSE);
		break;
</code></pre>
</blockquote>
<p>Danke Martin, der Code funktioniert soweit, jedoch gibt es offenbar eine minimal-Grenze für die Höhe der StatusBar.. ab ca. 25 wird sie bei mir nicht mehr kleiner <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/2051745</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2051745</guid><dc:creator><![CDATA[Ultrablack]]></dc:creator><pubDate>Tue, 19 Apr 2011 16:52:01 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Wed, 20 Apr 2011 05:53:32 GMT]]></title><description><![CDATA[<p>Das wiederum liegt vermutlich an der Font-Größe und den Rahmen, die vorgesehen werden. Ein weiteres Kriterium ist der Gripper rechts außen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2051879</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2051879</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 20 Apr 2011 05:53:32 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Wed, 20 Apr 2011 15:20:37 GMT]]></title><description><![CDATA[<p>Martin Richter schrieb:</p>
<blockquote>
<p>Das wiederum liegt vermutlich an der Font-Größe und den Rahmen, die vorgesehen werden. Ein weiteres Kriterium ist der Gripper rechts außen.</p>
</blockquote>
<p>Ich hab versucht den Gripper rauszunehmen und die Schriftgröße auf 3 zu stellen (Arial), jedoch will die StatusBar einfach nicht kleiner werden: <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<pre><code class="language-cpp">HWND DoCreateStatusBar(HWND hwndParent, int idStatus, HINSTANCE hinst, int cParts) 
{ 
	HWND hwndStatus; 
	RECT rcClient; 
	HLOCAL hloc; 
	PINT paParts; 
	int i, nWidth; 

	hwndStatus = CreateWindowEx(0, STATUSCLASSNAME, (PCTSTR) NULL, 
		WS_CHILD | WS_VISIBLE, 0, 0, 0, 0, 
		hwndParent, (HMENU) idStatus, hinst, NULL);

	SendMessage(hwndStatus, SB_SETMINHEIGHT, 5, 0); 

	GetClientRect(hwndParent, &amp;rcClient); 

	hloc = LocalAlloc(LHND, sizeof(int) * cParts); 
	paParts = (PINT) LocalLock(hloc); 

HANDLE hFont = CreateFont(3, 0, 0, 0, FW_DONTCARE, FALSE, FALSE,
	FALSE, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
	DEFAULT_QUALITY, DEFAULT_PITCH | FF_SWISS, &quot;Arial&quot;);

SendMessage(hwndStatus, WM_SETFONT, (WPARAM)hFont, true);
SendMessage(hwndStatus, SB_SETTEXT, 0, (LPARAM)&quot;oqwtouqwtu&quot;);

	nWidth = rcClient.right / cParts; 
	for (i = 0; i &lt; cParts; i++) { 
		paParts[i] = nWidth;
		nWidth += nWidth;
	} 

	SendMessage(hwndStatus, SB_SETPARTS, (WPARAM) cParts, (LPARAM)paParts); 

	LocalUnlock(hloc); 
	LocalFree(hloc);

	return hwndStatus; 
}
</code></pre>
<p>Den Rahmen kann man auch noch rausnehmen ? <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/2052133</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2052133</guid><dc:creator><![CDATA[Ultrablack]]></dc:creator><pubDate>Wed, 20 Apr 2011 15:20:37 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Wed, 20 Apr 2011 20:00:15 GMT]]></title><description><![CDATA[<p>Welchen Sinn macht bitte ein 3pt hoher Statusbar.<br />
Was hast Du eigentlich vor?</p>
<p>Wenn es so speziel ist, was Du da bauen willst dann erzeuge Dein eigenes Fenster. Das hättest Du in der Zwischenzeit schon längst fertig programmiert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2052231</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2052231</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 20 Apr 2011 20:00:15 GMT</pubDate></item><item><title><![CDATA[Reply to StatusBar-Höhe festlegen on Thu, 21 Apr 2011 15:43:47 GMT]]></title><description><![CDATA[<p>Martin Richter schrieb:</p>
<blockquote>
<p>Welchen Sinn macht bitte ein 3pt hoher Statusbar.<br />
Was hast Du eigentlich vor?</p>
<p>Wenn es so speziel ist, was Du da bauen willst dann erzeuge Dein eigenes Fenster. Das hättest Du in der Zwischenzeit schon längst fertig programmiert.</p>
</blockquote>
<p>3pt. war nur ein Beispiel wo es nicht mehr funktioniert, ich glaube du hast recht, und es wäre sinnvoller das Problem auf anderem Wege zu lösen.</p>
<p>Eigentlich wollte ich versuchen, wie zB. in .net die Status-Leiste noch niedriger zu machen, da mein vorgesehenes Fenster ebenso klein ist, und sonst nicht mit der StatusBar zusammenpasst. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
<p>Danke dir für die Hilfe <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2052587</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2052587</guid><dc:creator><![CDATA[Ultrablack]]></dc:creator><pubDate>Thu, 21 Apr 2011 15:43:47 GMT</pubDate></item></channel></rss>