<?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 : Button on Quick Access controls</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Button on Quick Access controls]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 12 Jun 2026 00:55:17 +0000</pubDate>
  <lastBuildDate>Mon, 13 Oct 2008 08:55:56 +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=12382</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[Button on Quick Access controls : Oleg,  Find Control didn&amp;#039;t...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41951&amp;title=button-on-quick-access-controls#41951</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2890">WaleedSeada</a><br /><strong>Subject:</strong> 12382<br /><strong>Posted:</strong> 13 October 2008 at 8:55am<br /><br />Oleg,<DIV>&nbsp;</DIV><DIV><strong>Find Control didn't work as excpected</strong> ....</DIV><DIV>&nbsp;</DIV><DIV>I used the Update event in the commandbar to enable/disable buttons.</DIV><DIV>&nbsp;</DIV><DIV>Regards,</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 13 Oct 2008 08:55:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41951&amp;title=button-on-quick-access-controls#41951</guid>
  </item> 
  <item>
   <title><![CDATA[Button on Quick Access controls : Hi, So your code works as expected....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41933&amp;title=button-on-quick-access-controls#41933</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12382<br /><strong>Posted:</strong> 13 October 2008 at 6:15am<br /><br />Hi,<DIV>So your code works as expected. </DIV><DIV>FindControl return first instance of Button and you disable it.</DIV><DIV>&nbsp;</DIV><DIV>Use Actions (see Actions sample) or Update handler (See Any sample) to Enable/Disable items, Show/Hide, Check.Uncheck.</DIV><DIV>&nbsp;</DIV><DIV>Use FindControl onyl when you sure there is only one control with this ID.</DIV>]]>
   </description>
   <pubDate>Mon, 13 Oct 2008 06:15:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41933&amp;title=button-on-quick-access-controls#41933</guid>
  </item> 
  <item>
   <title><![CDATA[Button on Quick Access controls : Hello Guys,  What&amp;#039;s up...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41920&amp;title=button-on-quick-access-controls#41920</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2890">WaleedSeada</a><br /><strong>Subject:</strong> 12382<br /><strong>Posted:</strong> 13 October 2008 at 1:44am<br /><br />Hello Guys,<DIV>&nbsp;</DIV><DIV>What's up ... still hanging up here ....</DIV><DIV>&nbsp;</DIV><DIV>any help !!!</DIV><DIV>&nbsp;</DIV><DIV>Regards.</DIV>]]>
   </description>
   <pubDate>Mon, 13 Oct 2008 01:44:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41920&amp;title=button-on-quick-access-controls#41920</guid>
  </item> 
  <item>
   <title><![CDATA[Button on Quick Access controls : Hello,   I use this code:  ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41802&amp;title=button-on-quick-access-controls#41802</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2890">WaleedSeada</a><br /><strong>Subject:</strong> 12382<br /><strong>Posted:</strong> 09 October 2008 at 3:05am<br /><br />Hello, <DIV>&nbsp;</DIV><DIV>I use this code:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; For Each i In TransIDs</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Disable the button on the ribbon<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = RibbonBar.FindControl(Null, i)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Not (Control Is Nothing) Then Control.Enabled = False</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Disable the button on the controlsystem<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = RibbonBar.ControlSystemButton.Controls.Find(Null, i)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Not (Control Is Nothing) Then Control.Enabled = False</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Has no effect ...<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Set Control = RibbonBar.QuickAccessControls.Find(0, i)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'If Not (Control Is Nothing) Then Control.Enabled = False<BR>&nbsp;&nbsp;&nbsp; Next i<BR></DIV><DIV>Please note that the buttons on the ControlSystem also not repling.</DIV><DIV>Regards</DIV>]]>
   </description>
   <pubDate>Thu, 09 Oct 2008 03:05:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41802&amp;title=button-on-quick-access-controls#41802</guid>
  </item> 
  <item>
   <title><![CDATA[Button on Quick Access controls : How do you try to disable it ?...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41801&amp;title=button-on-quick-access-controls#41801</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12382<br /><strong>Posted:</strong> 09 October 2008 at 2:58am<br /><br />How do you try to disable it ? ]]>
   </description>
   <pubDate>Thu, 09 Oct 2008 02:58:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41801&amp;title=button-on-quick-access-controls#41801</guid>
  </item> 
  <item>
   <title><![CDATA[Button on Quick Access controls : Hello All,  I have a simple...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41800&amp;title=button-on-quick-access-controls#41800</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2890">WaleedSeada</a><br /><strong>Subject:</strong> 12382<br /><strong>Posted:</strong> 09 October 2008 at 2:56am<br /><br />Hello All,<DIV>&nbsp;</DIV><DIV>I have a simple button on the QuickAccessControls and also added before to the commandbars control.</DIV><DIV>&nbsp;</DIV><DIV>On Ribbonbar:</DIV><DIV>------------------</DIV><DIV>Set Control = GroupFile.Add(xtpControlButton, ID_TRNS_AuditCase, ID_TRNS_AuditCase_L(Language), False, False)<BR></DIV><DIV>On QuickAccessControls:</DIV><DIV>------------------------------</DIV><DIV><DIV>RibbonBar.QuickAccessControls.Add xtpControlButton, ID_TRNS_AuditCase, ID_TRNS_AuditCase_L(Language), False, False</DIV><DIV>&nbsp;</DIV><DIV>I try to disable that button on the Commandbar control, it doesn't reply but the same button on the QuickAccessControls&nbsp;replies and get disabled.</DIV></DIV><DIV>&nbsp;</DIV><DIV>Should I add the same button with different ID !!!???</DIV><DIV>What is the difference between the same button on the two situation.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Best regards,</DIV>]]>
   </description>
   <pubDate>Thu, 09 Oct 2008 02:56:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12382&amp;PID=41800&amp;title=button-on-quick-access-controls#41800</guid>
  </item> 
 </channel>
</rss>