<?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 : Strangest bug this year ?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : Strangest bug this year ?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 09:29:46 +0000</pubDate>
  <lastBuildDate>Sun, 17 Aug 2008 01:04:27 +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=11839</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[Strangest bug this year ? : Hi,   Even in IDE you can see...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39945&amp;title=strangest-bug-this-year#39945</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 11839<br /><strong>Posted:</strong> 17 August 2008 at 1:04am<br /><br />Hi, <DIV>&nbsp;</DIV><DIV>Even in IDE you can see that there's something wrong. If you&nbsp;position label2 over label1 and&nbsp;drag label2 a&nbsp;little to the bottom it will&nbsp;act the same as with your code. </DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sun, 17 Aug 2008 01:04:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39945&amp;title=strangest-bug-this-year#39945</guid>
  </item> 
  <item>
   <title><![CDATA[Strangest bug this year ? : Nope, does not fix the problem....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39926&amp;title=strangest-bug-this-year#39926</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1367">ddebono</a><br /><strong>Subject:</strong> 11839<br /><strong>Posted:</strong> 16 August 2008 at 4:00am<br /><br />Nope, does not fix the problem.]]>
   </description>
   <pubDate>Sat, 16 Aug 2008 04:00:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39926&amp;title=strangest-bug-this-year#39926</guid>
  </item> 
  <item>
   <title><![CDATA[Strangest bug this year ? : Set Picture1.AutoRedraw to True...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39922&amp;title=strangest-bug-this-year#39922</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2113">ijwelch</a><br /><strong>Subject:</strong> 11839<br /><strong>Posted:</strong> 15 August 2008 at 9:39pm<br /><br />Set Picture1.AutoRedraw to True to fix this. <br><br>Maybe CJ can do something about it?<br>]]>
   </description>
   <pubDate>Fri, 15 Aug 2008 21:39:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39922&amp;title=strangest-bug-this-year#39922</guid>
  </item> 
  <item>
   <title><![CDATA[Strangest bug this year ? : This is a very strange and maybe...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39909&amp;title=strangest-bug-this-year#39909</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1367">ddebono</a><br /><strong>Subject:</strong> 11839<br /><strong>Posted:</strong> 15 August 2008 at 1:50pm<br /><br />This is a very strange and maybe never seen before bug in the Suite Controls. Just happens that it made a huge impact on our application.<br /><br />This happens in VB6 SP6 with the Suite controls 12.0.1<br /><br />- Create a form<br />- Create a VB picturebox (picture1)<br />- Make two Suite control labels (Label1 and Label2) inside the picturebox<br />- Make the labels transparent<br /><br />Insert this code in the form:<br /><br />Private Sub Form_Resize()<br /><br />Dim lWidth As Long<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;Picture1.Height = 14519<br />&nbsp;&nbsp;&nbsp;&nbsp;Picture1.Width = 24800<br />&nbsp;&nbsp;&nbsp;&nbsp;Picture1.Top = 0<br />&nbsp;&nbsp;&nbsp;&nbsp;Picture1.Left = 0<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;lWidth = Picture1.Width<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;Label2.Left = 0<br />&nbsp;&nbsp;&nbsp;&nbsp;Label2.Width = lWidth<br />&nbsp;&nbsp;&nbsp;&nbsp;Label2.Top = 0<br />&nbsp;&nbsp;&nbsp;&nbsp;Label2.Height = 7250<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;Label1.Left = 0<br />&nbsp;&nbsp;&nbsp;&nbsp;Label1.Width = lWidth<br />&nbsp;&nbsp;&nbsp;&nbsp;Label1.Height = 7260<br />&nbsp;&nbsp;&nbsp;&nbsp;Label1.Top = Label2.Height + 0<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />End Sub<br /><br />-----------------<br /><br />Run the program and maximize the window.<br /><br />It will maximize the window, but the picturebox will become corrupted because label1 and label2 are overlapping.<br /><br />The solution was to make the label1.top = label2.height+15<br /><br />Very few will ever experience this problem, but it signals a major fault in the Suite controls, and it might be happening in other situations too. Changing some other values will make it work.... so it's one in a million chance...<br /><br />Also attach a VB6 project to show the bug.<a href="uploads/20080815_134919_TestBug.zip" target="_blank">20080815_134919_TestBug.zip</a> <img src="http://forum.codejock.com/smileys/smiley5.gif" border="0" align="middle">  <img src="http://forum.codejock.com/smileys/smiley5.gif" border="0" align="middle">  <img src="http://forum.codejock.com/smileys/smiley5.gif" border="0" align="middle"> ]]>
   </description>
   <pubDate>Fri, 15 Aug 2008 13:50:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11839&amp;PID=39909&amp;title=strangest-bug-this-year#39909</guid>
  </item> 
 </channel>
</rss>