<?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[WS_VSCROLL | WS_HSCROLL]]></title><description><![CDATA[<p>Hi</p>
<p>Mit der Funktion CreateWindowEx() kann man ja Fenster erstellen die sofort eine Scrollbar haben indem man WS_VSCROLL | WS_HSCROLL verwendet.</p>
<p>Geht leicht und gut, dass einzige Problem ist, dass ich gerne die normalen Scrollbars hätte nicht die im Windows xp luna design.</p>
<p>Wie geht das?</p>
<p>Danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/83093/ws_vscroll-ws_hscroll</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 09:19:10 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/83093.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 17 Aug 2004 17:33:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to WS_VSCROLL | WS_HSCROLL on Tue, 17 Aug 2004 17:33:14 GMT]]></title><description><![CDATA[<p>Hi</p>
<p>Mit der Funktion CreateWindowEx() kann man ja Fenster erstellen die sofort eine Scrollbar haben indem man WS_VSCROLL | WS_HSCROLL verwendet.</p>
<p>Geht leicht und gut, dass einzige Problem ist, dass ich gerne die normalen Scrollbars hätte nicht die im Windows xp luna design.</p>
<p>Wie geht das?</p>
<p>Danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/584838</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/584838</guid><dc:creator><![CDATA[agentmulder]]></dc:creator><pubDate>Tue, 17 Aug 2004 17:33:14 GMT</pubDate></item><item><title><![CDATA[Reply to WS_VSCROLL | WS_HSCROLL on Wed, 18 Aug 2004 15:12:29 GMT]]></title><description><![CDATA[<p>Hast du eine manifest-Datei eingebunden oder sind die ScrollBars die einzigen Controlls, bei denen der VisualStyle angezeigt wird? Ich denke mal gemischt ist nicht möglich oder evtl. über Änderungen in der manifest-Datei.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/585556</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/585556</guid><dc:creator><![CDATA[D*niel *chumann]]></dc:creator><pubDate>Wed, 18 Aug 2004 15:12:29 GMT</pubDate></item><item><title><![CDATA[Reply to WS_VSCROLL | WS_HSCROLL on Wed, 18 Aug 2004 16:47:28 GMT]]></title><description><![CDATA[<p>Unter Windows XP werden die Scrollbars immer im Luna-Style gezeichnet, auch wenn die Anwendung keine Manifest-Datei benutzt. Eine Möglichkeit dies zu ändern gibt es AFAIK nicht, außer man benutzt die <a href="http://www.catch22.org.uk/source/" rel="nofollow">Cool Scrollbar Library</a>. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/585648</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/585648</guid><dc:creator><![CDATA[Shlo]]></dc:creator><pubDate>Wed, 18 Aug 2004 16:47:28 GMT</pubDate></item><item><title><![CDATA[Reply to WS_VSCROLL | WS_HSCROLL on Wed, 18 Aug 2004 18:27:10 GMT]]></title><description><![CDATA[<p>Ich wette, wenn man sie selbst über CreateWindow() erstellt:</p>
<pre><code class="language-cpp">hwndScroll = CreateWindowEx( 
    0L,                          // no extended styles 
    &quot;SCROLLBAR&quot;,                 // scroll bar control class 
    (LPSTR) NULL,                // text for window title bar 
    WS_CHILD | SBS_HORZ,         // scroll bar styles 
    0,                           // horizontal position 
    0,                           // vertical position 
    200,                         // width of the scroll bar 
    CW_USEDEFAULT,               // default height 
    hwnd,                   // handle to main window 
    (HMENU) NULL,           // no menu for a scroll bar 
    hinst,                  // instance owning this window 
    (LPVOID) NULL           // pointer not needed 
);
</code></pre>
<p>werden sie nicht im XP-Style gemalt. Natürlich, nur wenn keine manifest-Datei eingebunden wurde. (kann es nicht ausprobieren, hab kein XP installiert)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/585763</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/585763</guid><dc:creator><![CDATA[D*niel *chumann]]></dc:creator><pubDate>Wed, 18 Aug 2004 18:27:10 GMT</pubDate></item><item><title><![CDATA[Reply to WS_VSCROLL | WS_HSCROLL on Wed, 18 Aug 2004 18:35:12 GMT]]></title><description><![CDATA[<p>Das ist natürlich was anderes, da könnte man auch SetWindowTheme mit einem null HTHEME Handle aufrufen. <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/585768</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/585768</guid><dc:creator><![CDATA[Shlo]]></dc:creator><pubDate>Wed, 18 Aug 2004 18:35:12 GMT</pubDate></item><item><title><![CDATA[Reply to WS_VSCROLL | WS_HSCROLL on Wed, 18 Aug 2004 18:53:09 GMT]]></title><description><![CDATA[<p>Wie soll man sonst ein Fenster erstellen?<br />
Über den Resourceneditor? Warum sollte da auf einmal der Luna-Style benutzt werden?</p>
<p>Und kann man das mit SetWindowTheme nicht bei jedem Fenster machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/585784</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/585784</guid><dc:creator><![CDATA[call]]></dc:creator><pubDate>Wed, 18 Aug 2004 18:53:09 GMT</pubDate></item><item><title><![CDATA[Reply to WS_VSCROLL | WS_HSCROLL on Wed, 18 Aug 2004 18:54:25 GMT]]></title><description><![CDATA[<p>Ach sorry vergeßt meinen letzten Post. Kurz dannach hatte ich das Problem verstanden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/585785</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/585785</guid><dc:creator><![CDATA[call]]></dc:creator><pubDate>Wed, 18 Aug 2004 18:54:25 GMT</pubDate></item></channel></rss>