<?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 : Toolbar Update Logic</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Toolbar Update Logic]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 03:45:57 +0000</pubDate>
  <lastBuildDate>Thu, 07 Feb 2008 09:32:06 +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=9516</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[Toolbar Update Logic : Okay, maybe I jumped the gun here....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30925&amp;title=toolbar-update-logic#30925</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1934">cgaskill</a><br /><strong>Subject:</strong> 9516<br /><strong>Posted:</strong> 07 February 2008 at 9:32am<br /><br />Okay, maybe I jumped the gun here.&nbsp; My routine does go thru all the command bars (menu and toolbar).&nbsp; But for some reason my toolbar was not being updated.&nbsp; I started a test app to attach to this thread and it is working as expected.&nbsp; So, must be in my logic that goes thru all the command bars and grabs the controls.<br><br>Sorry for the false alarm.<br>]]>
   </description>
   <pubDate>Thu, 07 Feb 2008 09:32:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30925&amp;title=toolbar-update-logic#30925</guid>
  </item> 
  <item>
   <title><![CDATA[Toolbar Update Logic : Hi, You already have a routine...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30895&amp;title=toolbar-update-logic#30895</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 9516<br /><strong>Posted:</strong> 06 February 2008 at 9:40pm<br /><br /><P>Hi,</P><P>You already have a routine to enable/disable menu items, why not create a routine that finds the control in the toolbar? <BR></P>]]>
   </description>
   <pubDate>Wed, 06 Feb 2008 21:40:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30895&amp;title=toolbar-update-logic#30895</guid>
  </item> 
  <item>
   <title><![CDATA[Toolbar Update Logic : Unfortunately, the Actions are...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30893&amp;title=toolbar-update-logic#30893</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1934">cgaskill</a><br /><strong>Subject:</strong> 9516<br /><strong>Posted:</strong> 06 February 2008 at 9:23pm<br /><br />Unfortunately, the Actions are not available in version 9.7.]]>
   </description>
   <pubDate>Wed, 06 Feb 2008 21:23:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30893&amp;title=toolbar-update-logic#30893</guid>
  </item> 
  <item>
   <title><![CDATA[Toolbar Update Logic : Yes, you need to use Actions.1....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30891&amp;title=toolbar-update-logic#30891</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2113">ijwelch</a><br /><strong>Subject:</strong> 9516<br /><strong>Posted:</strong> 06 February 2008 at 8:37pm<br /><br />Yes, you need to use Actions.<br><br>1. Call CommandBars.EnableActions<br>2. Add controls to CommandBars as usual<br>3. Add Actions to Commandbars e.g.<br>CommandBars.Actions.Add ID_FILE_NEW,"","","",""<br><br>4. To enable control call<br>CommandBars.Actions(ID_FILE_NEW).Enabled=True<br>and all instances of that control id will be enabled.<br><br>See also ActionsSample<br>]]>
   </description>
   <pubDate>Wed, 06 Feb 2008 20:37:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30891&amp;title=toolbar-update-logic#30891</guid>
  </item> 
  <item>
   <title><![CDATA[Toolbar Update Logic : I am utilizing version 9.7 of...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30884&amp;title=toolbar-update-logic#30884</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1934">cgaskill</a><br /><strong>Subject:</strong> 9516<br /><strong>Posted:</strong> 06 February 2008 at 1:25pm<br /><br />I am utilizing version 9.7 of the XtremeCommandBars control.&nbsp; Do to the number of controls and the complexity of the update logic we do not want to handle the CommandBars_Update event to perform our control enabling/disabling.&nbsp; I have written a routine that will find a control based upon it's ID and call the Enable method.&nbsp; This works fine for the Menu items; however the corresponding toolbar control (with the same ID) does not get disabled.<br><br>Is there a way to update the enable status of a control other than the Update event?<br>]]>
   </description>
   <pubDate>Wed, 06 Feb 2008 13:25:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9516&amp;PID=30884&amp;title=toolbar-update-logic#30884</guid>
  </item> 
 </channel>
</rss>