<?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 : Group controls</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Group controls]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 13:46:43 +0000</pubDate>
  <lastBuildDate>Sun, 11 Feb 2007 13:49:41 +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=6368</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[Group controls : Duh,boy do I feel stupid :) -...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6368&amp;PID=20280&amp;title=group-controls#20280</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2707">DonB</a><br /><strong>Subject:</strong> 6368<br /><strong>Posted:</strong> 11 February 2007 at 1:49pm<br /><br /><P>Duh,&nbsp;boy do I feel stupid :) - thanks</P>]]>
   </description>
   <pubDate>Sun, 11 Feb 2007 13:49:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6368&amp;PID=20280&amp;title=group-controls#20280</guid>
  </item> 
  <item>
   <title><![CDATA[Group controls : Hi,  use  IRibbonGroup::Item...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6368&amp;PID=20267&amp;title=group-controls#20267</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6368<br /><strong>Posted:</strong> 11 February 2007 at 3:20am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>use </DIV><DIV>IRibbonGroup::Item property</DIV>]]>
   </description>
   <pubDate>Sun, 11 Feb 2007 03:20:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6368&amp;PID=20267&amp;title=group-controls#20267</guid>
  </item> 
  <item>
   <title><![CDATA[Group controls : How do youaccess individual controls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6368&amp;PID=20261&amp;title=group-controls#20261</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2707">DonB</a><br /><strong>Subject:</strong> 6368<br /><strong>Posted:</strong> 10 February 2007 at 2:03pm<br /><br /><P>How do you&nbsp;access individual controls in a Group?&nbsp; Used designer to create all controls.&nbsp; Ribbon does not have CommandBar class (at least I can't find one) so I use an Array filled with ID's to populate anything Ribbon related.</P><DIV><FONT face="Courier New, Courier, mono">Sub RibbonObjectControlsUsingArray( _</FONT></DIV><DIV><FONT face="Courier New, Courier, mono">oCB As XtremeCommandBars.CommandBars, _<BR>oRibbonObject As Object, _<BR>iArray() As Long)<BR></DIV></FONT><DIV><FONT face="Courier New, Courier, mono">Dim i&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; As Long<BR>Dim iCount&nbsp; As Long<BR>Dim oCTL&nbsp;&nbsp;&nbsp; As XtremeCommandBars.CommandBarControl<BR>Dim oCtlDC&nbsp; As XtremeCommandBars.CommandBarControl<BR>&nbsp;&nbsp;&nbsp;<BR>oRibbonObject.DeleteAll<BR>iCount = UBound(iArray)<BR>For i = 0 To iCount<BR>&nbsp;Select Case iArray(i)<BR>&nbsp;Case C_BeginGroup</FONT></DIV><DIV><FONT face="Courier New, Courier, mono">&nbsp;&nbsp;If Not (oCTL Is Nothing) Then oCTL.BeginGroup = True<BR>&nbsp;Case Else<BR>&nbsp; Set oCtlDC = oCB.DesignerControls.Find(, iArray(i))<BR>&nbsp;&nbsp;If Not (oCtlDC Is Nothing) Then<BR>&nbsp;&nbsp; With oCtlDC<BR>&nbsp;&nbsp;&nbsp;&nbsp; Set oCTL = oRibbonObject.Add(.Type, .ID, .Caption)<BR>&nbsp;&nbsp;&nbsp;&nbsp; oCTL.DescriptionText = .DescriptionText<BR>&nbsp;&nbsp;&nbsp;&nbsp; oCTL.IconId = .IconId<BR>&nbsp;&nbsp;&nbsp;&nbsp; oCTL.Style = .Style<BR>&nbsp;&nbsp;&nbsp;&nbsp; oCTL.ToolTipText = .ToolTipText<BR>&nbsp;&nbsp;&nbsp;End With<BR>&nbsp;&nbsp;&nbsp;Set oCtlDC = Nothing<BR>&nbsp;&nbsp;End If<BR>&nbsp;End Select<BR>Next</FONT></DIV><DIV><FONT face="Courier New, Courier, mono">Set oCTL = Nothing<BR>End Sub</DIV></FONT><DIV>&nbsp;</DIV><DIV>After I call this how do I get access to an individual control to change, say its Style property?&nbsp; Tried using&nbsp;Ribbon.Controls.Find after routine but it changed Sytle in QuickAccessControls (which uses above Sub) which I did not want to happen.&nbsp; Any help is appreciated.</DIV><DIV>&nbsp;</DIV><DIV>Regards,</DIV><DIV>Don&nbsp;</DIV>]]>
   </description>
   <pubDate>Sat, 10 Feb 2007 14:03:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6368&amp;PID=20261&amp;title=group-controls#20261</guid>
  </item> 
 </channel>
</rss>