<?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 : Alternatives to Designer Studio</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Alternatives to Designer Studio]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 07:00:01 +0000</pubDate>
  <lastBuildDate>Thu, 16 Dec 2004 14:14:33 +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=1522</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[Alternatives to Designer Studio : I see what your are saying SuperMario,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4411&amp;title=alternatives-to-designer-studio#4411</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 2:14pm<br /><br /><P>I see what your are saying SuperMario, and this may have been one of the problems I was having.&nbsp; Since adding the controls programatically however, the problem has gone away.&nbsp; I guess this means I should stick to doing things in code rather than the xcb. <IMG style="CURSOR: pointer" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley5.gif'" alt=C&#111;nfused src="https://forum.codejock.com/smileys/smiley5.gif" border="0"></P><P>To all who have responded to this thread, please accept my thanks.&nbsp; Your replies made it a LOT easier to identify the problems I was having!</P>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 14:14:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4411&amp;title=alternatives-to-designer-studio#4411</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio :    I think this is wrong, here...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4408&amp;title=alternatives-to-designer-studio#4408</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 12:23pm<br /><br />I think this is wrong, here it looks like you are trying to load an xcbfile into all 4 commandbars in the CommandBars3 object (not sure whatyou are doing here).<br><br><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by DDJJ" alt="Originally posted by DDJJ" style="vertical-align: text-bottom;" /> <strong>DDJJ wrote:</strong><br /><br /><br>For i = 0 To 4<br>&nbsp; &nbsp;&nbsp; CommandBars3(i).LoadDesignerBars App.Path &amp; "\MinorNavigation.xcb"<br>&nbsp;&nbsp;&nbsp;&nbsp; CommandBars3(i)(2).ContextMenuPresen t = False<br>Next<br></td></tr></table><br><br>To access a particular commandbar in a CommandBars object do this:<br><br>CommandBars(1).ContextMenuPresent = FALSE ' This is the ActiveMenuBar<br>CommandBars(2).ContextMenuPresent = FALSE ' This is the First CommandBar added<br>CommandBars(3).ContextMenuPresent = FALSE ' This is the Second CommandBar added<br>......<br><br>Why not just?:<br>&nbsp;&nbsp;&nbsp; CommandBars3.LoadDesignerBars App.Path &amp; "\MinorNavigation.xcb"<br> &nbsp;&nbsp;&nbsp;&nbsp;CommandBars3(2).ContextMenuPresen t = False<br><br>This will remove the context menu entry for the 1st toolbar added in the MinorNavigation xcb file.<br><br>I think you meant this:<br><br>CommandBars3.LoadDesignerBars App.Path &amp; "\MinorNavigation.xcb"<br>For i = 1 To 5<br>&nbsp; &nbsp; &nbsp; CommandBars3(i).ContextMenuPresen t = False<br>Next<br><span style="font-size:10px"><br /><br />Edited by SuperMario</span>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 12:23:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4408&amp;title=alternatives-to-designer-studio#4408</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : OK. I think we&amp;#039;re getting...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4407&amp;title=alternatives-to-designer-studio#4407</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 12:09pm<br /><br /><P>OK.&nbsp; I think we're getting closer here...</P><P>Changed all of the frame controls to PictureBox controls.&nbsp; Reran code, same problem.</P><P>Deleted all of the CommandBar controls by editing the VB form using Notepad.&nbsp; Opened up the form in the IDE, added the controls back in, BUT I commented out the following (and it works!):</P><P>CommandBars1.LoadDesignerBars App.Path &amp; "\BasicNavigation.xcb"<BR>CommandBars2.LoadDesignerBars App.Path &amp; "\BasicNavigation.xcb"</P><P>For i = 0 To 4<BR>&nbsp;&nbsp;&nbsp;&nbsp;CommandBars3(i).LoadDesignerBars App.Path &amp; "\MinorNavigation.xcb"<BR> &nbsp;&nbsp;&nbsp;&nbsp;CommandBars3(i)(2).ContextMenuPresen t = False</P><P>Next<BR>CommandBars4.LoadDesignerBars App.Path &amp; "\MinorNavigation.xcb"<BR>CommandBars4(1).ContextMenuPresent = False</P><P>As long as I don't load the designer bars, I am able to save, close, and reopen the app without a problem.&nbsp; This is not a big issue because I am in the process of using code to design the CBs, so this language will be deleted anyway.&nbsp; But I think the problem has been either (1) you can't load the same designer info to more than one CB at the same time, or (2) I'm doing something wrong with the ContextMenuPresent property.</P><P>Am I heading in the right direction?</P>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 12:09:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4407&amp;title=alternatives-to-designer-studio#4407</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : Hold on. I just noticed that at...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4405&amp;title=alternatives-to-designer-studio#4405</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 10:15am<br /><br /><P>Hold on.&nbsp; I just noticed that at least one of the controls hosting a CommandBar control is in fact a Frame control.&nbsp; Sounds like this is a big no no, so I'm going to change this and see if that fixes the problem.&nbsp; Will report results.</P><P>Thanks!</P>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 10:15:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4405&amp;title=alternatives-to-designer-studio#4405</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : I have no problems doing this....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4404&amp;title=alternatives-to-designer-studio#4404</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 10:05am<br /><br />I have no problems doing this.&nbsp; Can you post sample for us to debug?&nbsp;&nbsp; And yes, you are correct on last question.]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 10:05:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4404&amp;title=alternatives-to-designer-studio#4404</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : That&amp;#039;s what I&amp;#039;ve been...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4403&amp;title=alternatives-to-designer-studio#4403</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 10:01am<br /><br /><P>That's what I've been doing.&nbsp; Actually, I've set this up so that each codejock tab points to a PictureBox control as the OLE_HANDLE, then inserted a PictureBox control within THAT PictureBox control, then inserted a CommandBar control within THAT PictureBox control.&nbsp; Make sense?</P><P>Also, I am assuming there is no way to use one CommandBar control and programatically create each CommandBarControl and "assign" them to a PictureBox control, correct?&nbsp;&nbsp;</P>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 10:01:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4403&amp;title=alternatives-to-designer-studio#4403</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : Try placing the PictureBox on...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4401&amp;title=alternatives-to-designer-studio#4401</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 9:35am<br /><br />Try placing the PictureBox on the form, then insert the CommandBars object directly into the PictureBox. &nbsp;]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 09:35:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4401&amp;title=alternatives-to-designer-studio#4401</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : That&amp;#039;s the problem. I have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4400&amp;title=alternatives-to-designer-studio#4400</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 9:23am<br /><br /><P>That's the problem.&nbsp; I have created 6 different CommandBar objects for the form, and placed each of those CommandBar objects in separate PictureBox controls.&nbsp; You're saying this should work?&nbsp; Then why is the form crashing every time I try and start it?</P><P>Is there any thread out there, or other codejock documentation, that covers this in any detail?&nbsp; I was going to try creating 6 additional borderless forms today, dropping the CommandBar control on each new form, and pointing the OLE_HANDLE of the tabs to these new forms to see if that would work.&nbsp; That seems like a rather inefficient way to have to do it though...<IMG style="CURSOR: pointer" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley19.gif'" alt=Cry src="https://forum.codejock.com/smileys/smiley19.gif" border="0"></P><P>Thanks for the responses! I gotta say the codejock forum has been great for response times.<IMG style="CURSOR: pointer" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley32.gif'" alt=Clap src="https://forum.codejock.com/smileys/smiley32.gif" border="0"></P>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 09:23:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4400&amp;title=alternatives-to-designer-studio#4400</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : you can&amp;#039;t. you must create...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4397&amp;title=alternatives-to-designer-studio#4397</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 5:44am<br /><br /><P>you can't. you must create 6 CommandBars objects for each PictureBox and&nbsp; place them on PictureBox (not Frame)</P>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 05:44:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4397&amp;title=alternatives-to-designer-studio#4397</guid>
  </item> 
  <item>
   <title><![CDATA[Alternatives to Designer Studio : After a few hit and misses, I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4390&amp;title=alternatives-to-designer-studio#4390</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1522<br /><strong>Posted:</strong> 16 December 2004 at 12:27am<br /><br /><P>After a few hit and misses, I was able to load icons fairly easily.&nbsp; Using an existing resource file to store the image works fine (and also avoids have to reload/duplicate).</P><P>I continue to have a problem briefly mentioned earlier:</P><P>We have a VB6 form which hosts a fairly complex&nbsp;series of&nbsp;multiple tabs/sub tabs, etc.&nbsp; I am using the codejock tabcontrol for this purpose.&nbsp; A few of these different tabs require a control to help the user navigate through some database records.&nbsp; Because I can't figure out how you would create say, 6 different toolbars from one instance of the CommandBar instance AND have each toolbar show up on a different tab, I have instead tried dropping the CommandBar control in six different picturebox controls to see if I could make that work.</P><P>Three times now I have done this and closed the code thinking that it was working.&nbsp; When I've later gone back to reopen the code however, VB crashes when I merely try and open the form to view it (something about "could not read memory...).&nbsp; I'm guessing that it doesn't like the fact that I'm using 6 different CommandBar controls on the same form.</P><P>Is it possible to do what I wanted to do to begin with, which is add one CommandBar control and programatically create 6 toolbars which will be resident on six different picturebox controls?&nbsp; This would obviously be the right way to go, and avoid having to even deal with the crashes I'm having doing it the way I am now.&nbsp; Seems like the CommandBar control would need an "Owner" property (which I don't seem to be able to find), or something like that, for each CommandBarControl object created to associate 6 different picturebox controls??</P><P>Thanks!</P>]]>
   </description>
   <pubDate>Thu, 16 Dec 2004 00:27:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1522&amp;PID=4390&amp;title=alternatives-to-designer-studio#4390</guid>
  </item> 
 </channel>
</rss>