<?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 : VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 27 May 2026 12:34:36 +0000</pubDate>
  <lastBuildDate>Tue, 18 Jan 2005 10:05:53 +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=810</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[VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N : I didn&amp;#039;t use your popup menu...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4764&amp;title=vb6-sp6-ide-crashes-new-documentation#4764</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=691">ca&#115;tleJoe</a><br /><strong>Subject:</strong> 810<br /><strong>Posted:</strong> 18 January 2005 at 10:05am<br /><br /><P>I didn't use your popup menu before and for a simple popup ms worked fine...</P><P>But here it comes <A href="https://forum.codejock.com/uploads/castleJoe/2005-01-18_100444_CodejockCrash2.zip" target="_blank">2005-01-18_100444_CodejockCrash2.zip</A></P>]]>
   </description>
   <pubDate>Tue, 18 Jan 2005 10:05:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4764&amp;title=vb6-sp6-ide-crashes-new-documentation#4764</guid>
  </item> 
  <item>
   <title><![CDATA[VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N : You can use our themed popup menus.... May...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4763&amp;title=vb6-sp6-ide-crashes-new-documentation#4763</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 810<br /><strong>Posted:</strong> 18 January 2005 at 9:43am<br /><br /><P>You can use our themed popup menus....</P><P>May be you can again attach projcet with&nbsp;MDIChild = False and menu. I can't it reproduce.</P>]]>
   </description>
   <pubDate>Tue, 18 Jan 2005 09:43:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4763&amp;title=vb6-sp6-ide-crashes-new-documentation#4763</guid>
  </item> 
  <item>
   <title><![CDATA[VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N : Thanks Oleg, the MDIChild = False...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4759&amp;title=vb6-sp6-ide-crashes-new-documentation#4759</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=691">ca&#115;tleJoe</a><br /><strong>Subject:</strong> 810<br /><strong>Posted:</strong> 18 January 2005 at 6:56am<br /><br />Thanks Oleg, the MDIChild = False almost works :) I have a popup menu (standard MS) on the form (define a menu on Form1 in the prev. project) and that gives borders to the form although I set it borderless. In this case CJ can't attach/handle the form correctly unless I set MDIChild = True. Without a menu things work fine with the MDIChild = False...]]>
   </description>
   <pubDate>Tue, 18 Jan 2005 06:56:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4759&amp;title=vb6-sp6-ide-crashes-new-documentation#4759</guid>
  </item> 
  <item>
   <title><![CDATA[VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N : MDIChild property for Child Docking...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4757&amp;title=vb6-sp6-ide-crashes-new-documentation#4757</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 810<br /><strong>Posted:</strong> 17 January 2005 at 2:48pm<br /><br /><P>MDIChild property for Child Docking Panes forms must be False.</P><P>Also add code to unload panes forms:</P><P>Private Sub MDIForm_Unload(Cancel As Integer)<BR>&nbsp;&nbsp;&nbsp; MsgBox "Unloaded correctly."<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp; Dim i As Long<BR>&nbsp;&nbsp; 'close all sub forms<BR>&nbsp;&nbsp;&nbsp; For i = Forms.Count - 1 To 1 Step -1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Unload Forms(i)<BR>&nbsp;&nbsp;&nbsp; Next<BR>&nbsp;&nbsp;&nbsp; <BR>End Sub</P>]]>
   </description>
   <pubDate>Mon, 17 Jan 2005 14:48:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4757&amp;title=vb6-sp6-ide-crashes-new-documentation#4757</guid>
  </item> 
  <item>
   <title><![CDATA[VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N : I&amp;#039;ve been having the same...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4748&amp;title=vb6-sp6-ide-crashes-new-documentation#4748</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=691">ca&#115;tleJoe</a><br /><strong>Subject:</strong> 810<br /><strong>Posted:</strong> 17 January 2005 at 6:29am<br /><br /><P>I've been having the same crash of IDE and my app too, but I didn't manage to find the problem because it seemed to happen randomly. But now I think I found it (at least in my case).</P><P>If you start the attached app and close it without doing anything -&gt; crash. If you click on the "No crash" button and close the app after that -&gt; the app closes correctly.</P><P>I hope this helps fixing the problem...<A href="https://forum.codejock.com/uploads/castleJoe/2005-01-17_062801_CodejockCrash.zip" target="_blank">2005-01-17_062801_CodejockCrash.zip</A></P>]]>
   </description>
   <pubDate>Mon, 17 Jan 2005 06:29:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=4748&amp;title=vb6-sp6-ide-crashes-new-documentation#4748</guid>
  </item> 
  <item>
   <title><![CDATA[VB6 - SP6 IDE Crashes - NEW &#068;OCUMENTATI&#079;N : Using your components on my Windows...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=2142&amp;title=vb6-sp6-ide-crashes-new-documentation#2142</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=331">vbuser</a><br /><strong>Subject:</strong> 810<br /><strong>Posted:</strong> 04 June 2004 at 1:04am<br /><br /><P><SPAN style="FONT-SIZE: 8.5pt; COLOR: black; FONT-FAMILY: Tahoma">Using your components on my Windows XP running VB6 SP6 crashes the IDE sometimes. The problem usually happens when in debugging mode, doing steps into lines of code and whenever the running code inside the IDE is STOPPED using the VB6 IDE stop button, <strong>the VB6 IDE just vanishes...<?:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></strong></SPAN></P><P><SPAN style="FONT-SIZE: 8.5pt; COLOR: black; FONT-FAMILY: Tahoma">SUGGESTION: I've been trying to decipher your documentation for the suite for almost 1 year. An IDEA that will make your products more appealing would be <strong>HELP that actually give you an EXAMPLE of how to implement the property, method or event…</strong> See the VB6 IDE Help system… You always can see an <strong>example</strong> of how to implement whatever your looking at… <o:p></o:p></SPAN></P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 04 Jun 2004 01:04:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=810&amp;PID=2142&amp;title=vb6-sp6-ide-crashes-new-documentation#2142</guid>
  </item> 
 </channel>
</rss>