<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Skinned listbox</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Skin Framework : Skinned listbox]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 16 Apr 2026 23:39:56 +0000</pubDate>
  <lastBuildDate>Tue, 25 Jun 2019 12:33:51 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=13085</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Skinned listbox : Well it has been 10 years and...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=77390&amp;title=skinned-listbox#77390</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4794">rdmeyers</a><br /><strong>Subject:</strong> 13085<br /><strong>Posted:</strong> 25 June 2019 at 12:33pm<br /><br />Well it has been 10 years and in an attempt to use the SkinFramework again I have found that this performance problem still exists!&nbsp; How can I prevent the ListBox control from drawing the scrollbar after each item is added to it?&nbsp; I have the control's Visible property set to False, and the Form's AutoRedraw property set to False.<br>]]>
   </description>
   <pubDate>Tue, 25 Jun 2019 12:33:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=77390&amp;title=skinned-listbox#77390</guid>
  </item> 
  <item>
   <title><![CDATA[Skinned listbox : Have you tried turning off the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=45193&amp;title=skinned-listbox#45193</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4937">TomCollins88</a><br /><strong>Subject:</strong> 13085<br /><strong>Posted:</strong> 08 February 2009 at 9:22am<br /><br />Have you tried turning off the autoredraw for the form?<br><br>me.AutoRedraw = False <br>'load listbox<br>me.AutoRedraw = True<br><br>Haven't had a chance to try it, but I think it'll work.<br>]]>
   </description>
   <pubDate>Sun, 08 Feb 2009 09:22:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=45193&amp;title=skinned-listbox#45193</guid>
  </item> 
  <item>
   <title><![CDATA[Skinned listbox : I was referring to a standard...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=44287&amp;title=skinned-listbox#44287</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4794">rdmeyers</a><br /><strong>Subject:</strong> 13085<br /><strong>Posted:</strong> 07 January 2009 at 3:49pm<br /><br />I was referring to a standard VB6 listbox control, so your code sample won't work.<DIV>&nbsp;</DIV><DIV>Neither hiding the Listbox control, nor calling LockWindowUpdate on it improves the poor performance.</DIV><DIV>&nbsp;</DIV><DIV>However,&nbsp;I did find a workaround that appears to solve the problem:</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SkinFramework1.RemoveWindow Listbox1.hWnd<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' fill listbox code goes here<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SkinFramework1.ApplyWindow Listbox1.hWnd<BR></DIV><DIV>Do you see any potential problem or side effect&nbsp;with this approach?</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 07 Jan 2009 15:49:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=44287&amp;title=skinned-listbox#44287</guid>
  </item> 
  <item>
   <title><![CDATA[Skinned listbox : Hi,  Guess ListBox redraw Scrollbar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=44276&amp;title=skinned-listbox#44276</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 13085<br /><strong>Posted:</strong> 07 January 2009 at 2:58pm<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Guess ListBox redraw Scrollbar on each change.</DIV><DIV>&nbsp;</DIV><DIV>Just add</DIV><DIV>&nbsp;m_wndListBox.SetRedraw(FALSE);<BR>&nbsp;m_wndListBox.SetRedraw(TRUE);</DIV><DIV>&nbsp;</DIV><DIV>around populating and you will get same 1sec.</DIV>]]>
   </description>
   <pubDate>Wed, 07 Jan 2009 14:58:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=44276&amp;title=skinned-listbox#44276</guid>
  </item> 
  <item>
   <title><![CDATA[Skinned listbox : I have a listbox that gets populated...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=44202&amp;title=skinned-listbox#44202</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4794">rdmeyers</a><br /><strong>Subject:</strong> 13085<br /><strong>Posted:</strong> 06 January 2009 at 11:50am<br /><br />I have a listbox that gets populated with 10,000+ items.&nbsp; This typically takes only 1 second, but if the application is skinned it takes 8 seconds!&nbsp; Why should skinning the app effect the performance of seemingly unrelated tasks?<DIV></DIV>]]>
   </description>
   <pubDate>Tue, 06 Jan 2009 11:50:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13085&amp;PID=44202&amp;title=skinned-listbox#44202</guid>
  </item> 
 </channel>
</rss>