<?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 : Crash VB6 IDE when close app</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Crash VB6 IDE when close app]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 21:47:24 +0000</pubDate>
  <lastBuildDate>Fri, 24 Feb 2012 14:50:04 +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=4782</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[Crash VB6 IDE when close app :   There is another solution:In...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67689&amp;title=crash-vb6-ide-when-close-app#67689</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1753">cbickel</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 24 February 2012 at 2:50pm<br /><br />There is another solution:<div>&nbsp;</div><div>In the Event Docking_Action(...) </div><div>check, if any Pane&nbsp;was unloaded:</div><div>like this...</div><div>&nbsp;&nbsp;&nbsp; If Action = PaneActionClosed Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Pane.Id = 1 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Unload fMenuTree<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set fMenuTree = Nothing<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ElseIf Pane.Id = 2 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Unload fAKT<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set fAKT = Nothing<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; End If<br></div><div>This prevents VB-IDE from crashing when finishing the program.</div><div>And even if the project is not stopped it saves a lot of memory.</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Fri, 24 Feb 2012 14:50:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67689&amp;title=crash-vb6-ide-when-close-app#67689</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : Okay, I Solved my problem.In unload...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67468&amp;title=crash-vb6-ide-when-close-app#67468</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6662">jhai_salvador</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 19 January 2012 at 11:24pm<br /><br />Okay, I Solved my problem.<br><br>In unload event of the main form.<br><br>&nbsp;&nbsp; SkinFramework1.RemoveAllWindows 'Destroy the loaded skin first<br>&nbsp;&nbsp; DockingPane1.DestroyAll<br><br>&nbsp;&nbsp; For Each frm In Forms<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Unload frm<br>&nbsp;&nbsp; Next<br><br>]]>
   </description>
   <pubDate>Thu, 19 Jan 2012 23:24:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67468&amp;title=crash-vb6-ide-when-close-app#67468</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : This is my step in creating docking...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67467&amp;title=crash-vb6-ide-when-close-app#67467</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6662">jhai_salvador</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 19 January 2012 at 10:45pm<br /><br />This is my step in creating docking panes.<br><br>1. DockingPane1.SetCommandBars CommandBars1<br>2. Load SkinFrameWork<br>3. CommandBars1.LoadDesignerBars App.Path &amp; "\Bin\main.xcb"<br>4. Add Statusbar Pane<br>5. Create DockingPane, Attach Pane will be from another form handle.<br><br>Well, IDE Crashes only occur when I close the running app. (Not Stop from IDE). <br><br>Now what are your steps to prevent this kind of error?..<br>]]>
   </description>
   <pubDate>Thu, 19 Jan 2012 22:45:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67467&amp;title=crash-vb6-ide-when-close-app#67467</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : Has this issue been resolve? I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67461&amp;title=crash-vb6-ide-when-close-app#67461</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6662">jhai_salvador</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 19 January 2012 at 7:39am<br /><br />Has this issue been resolve? I also have this kind of problem using v13 and v15.<br><br>IDE crash after Unload Event.<br><br><br>]]>
   </description>
   <pubDate>Thu, 19 Jan 2012 07:39:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=67461&amp;title=crash-vb6-ide-when-close-app#67461</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : hi,  I am using Codejock Controls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=21907&amp;title=crash-vb6-ide-when-close-app#21907</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2925">sebm</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 13 April 2007 at 3:53am<br /><br />hi, <br><br>I am using Codejock Controls 10.1 an&nbsp; i have the same problem - here my<br>solution (dont know, if its really the problem):<br>i put on my form a textbox behind all controls (visible!) - and in the form_unload<br>event, i set at first the focus to the textbox: the IDE dont crash anymore.<br><br>In my opinion, the error occurs in (big) projects, in which a form is attached to a<br>pane, and the pane owns the focus when the program closed - the crash<br>always followed after the form_unload events.....<br><br>ive tried to reproduced this error in a small project, but theres all ok....&nbsp; <img src="http://forum.codejock.com/smileys/smiley11.gif" border="0" align="absmiddle"><br><br>cya sebastian (sry for my bad english ;)<br>]]>
   </description>
   <pubDate>Fri, 13 Apr 2007 03:53:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=21907&amp;title=crash-vb6-ide-when-close-app#21907</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : I solved this by simply putting...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17188&amp;title=crash-vb6-ide-when-close-app#17188</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=787">JSram</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 09 November 2006 at 8:44am<br /><br />I solved this by simply putting my control(s) on a picture box, located on same form as the Pane, and then attach the picture box. This was a better solution anyway as it increased the performance and simplified some other things. So currently I don't have any pane with form attached.<br><br>I concluded though that the problem might had to do with a 3rd party control I use in the pane, from ExOntrol (www.exontrol.com). I will probably add more tabs to my pane later and will test further then if the presence of this control makes a difference or not.<br><br>/Joakim<br>]]>
   </description>
   <pubDate>Thu, 09 Nov 2006 08:44:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17188&amp;title=crash-vb6-ide-when-close-app#17188</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : Hi,  Need more deatails because...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17186&amp;title=crash-vb6-ide-when-close-app#17186</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 09 November 2006 at 8:25am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Need more deatails because nobody from Codejock can't reproduce it. What code you have? Where you set breakpoint? May be you can attach some small project with steps how reproduce the problem.</DIV>]]>
   </description>
   <pubDate>Thu, 09 Nov 2006 08:25:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17186&amp;title=crash-vb6-ide-when-close-app#17186</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : Hi Semsar, Nice to here we are...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17134&amp;title=crash-vb6-ide-when-close-app#17134</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2492">Leather99</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 08 November 2006 at 7:45am<br /><br /><P>Hi Semsar,</P><DIV>Nice to here we are not the only ones. This is a pretty major issue, and has lead to reduced productivity, becase edit and continue is effectively out of bounds for us now. If we use it we very often lose the changes when the IDE crashes.</DIV><DIV>&nbsp;</DIV><DIV>Any response from CodeJock on this???</DIV><DIV>&nbsp;</DIV><DIV>Cheers,</DIV><DIV>&nbsp;</DIV><DIV>D</DIV>]]>
   </description>
   <pubDate>Wed, 08 Nov 2006 07:45:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17134&amp;title=crash-vb6-ide-when-close-app#17134</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : I am also using these controls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17132&amp;title=crash-vb6-ide-when-close-app#17132</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2496">sesmar</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 08 November 2006 at 7:33am<br /><br />I am also using these controls in a project for the company I work for and we are having the same problem.&nbsp; The controls work fine in the resulting EXE; however, we are experiencing this same complications within the VB6 IDE as has been explained here.<br><br>From my experience it only seems to cause a problem if you activate the Docking Pane after the program has loaded.&nbsp; For example, when the app loads up the Docking Pane form is docked and hidden, if I activate the form and cause it to slid out then I go and stop the code using the IDE it will cause the IDE to crash.&nbsp; Now if I do the samething as before but this time instead of stopping the code actually exit the app through the interface it will close without a problem.<br><br>While this is a not a problem when deploying the application it can cause a considerable amount of downtime to our developers when we are trying to troubleshoot an issue in the code.&nbsp; We purchased this control suite primarily for the Docking Panes and they are the only control that is giving us a problem so far.<br>]]>
   </description>
   <pubDate>Wed, 08 Nov 2006 07:33:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17132&amp;title=crash-vb6-ide-when-close-app#17132</guid>
  </item> 
  <item>
   <title><![CDATA[Crash VB6 IDE when close app : Hi Jsram,  We use the codejock...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17096&amp;title=crash-vb6-ide-when-close-app#17096</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2492">Leather99</a><br /><strong>Subject:</strong> 4782<br /><strong>Posted:</strong> 07 November 2006 at 8:23am<br /><br />Hi Jsram,<DIV>&nbsp;</DIV><DIV>We use the codejock controls in our application and we have had loads of problems with the IDE bombing out. It only started to happen when we included Codejock and has never really been resolved. We use the docking pane and command bars. The way we get around it at the moment is to always close the application (rather than hitting stop in the IDE). This seems to avoid the problem most of the time, although it does still crash fairly frequently. Sorry I can't be of more help - just thought I would let you know you are not alone.</DIV><DIV>&nbsp;</DIV><DIV>Incidentally in our case this is not a problem with the resulting exe - thats closes fine.</DIV><DIV>&nbsp;</DIV><DIV>Cheers</DIV><DIV>&nbsp;</DIV><DIV>D</DIV>]]>
   </description>
   <pubDate>Tue, 07 Nov 2006 08:23:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4782&amp;PID=17096&amp;title=crash-vb6-ide-when-close-app#17096</guid>
  </item> 
 </channel>
</rss>