<?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 : RibbonGroup Fixed Size</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : RibbonGroup Fixed Size]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 14 Jun 2026 21:04:01 +0000</pubDate>
  <lastBuildDate>Tue, 10 Mar 2009 09:43:30 +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=13595</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[RibbonGroup Fixed Size : Oleg,  Thank you! That was the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46488&amp;title=ribbongroup-fixed-size#46488</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4375">TShriver</a><br /><strong>Subject:</strong> 13595<br /><strong>Posted:</strong> 10 March 2009 at 9:43am<br /><br />Oleg,<DIV>&nbsp;</DIV><DIV>Thank you!&nbsp; That was the solution.&nbsp; ControlEdit.Style = xtpButtonIconAndCaption for all items.</DIV><DIV>&nbsp;</DIV><DIV>Best,</DIV><DIV>&nbsp;</DIV><DIV>Tim</DIV>]]>
   </description>
   <pubDate>Tue, 10 Mar 2009 09:43:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46488&amp;title=ribbongroup-fixed-size#46488</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonGroup Fixed Size : Hi,  Then add Control.Style...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46468&amp;title=ribbongroup-fixed-size#46468</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 13595<br /><strong>Posted:</strong> 10 March 2009 at 1:57am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Then add</DIV><DIV>Control.Style = xtpButtonIconAndCaption for all Edit.</DIV>]]>
   </description>
   <pubDate>Tue, 10 Mar 2009 01:57:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46468&amp;title=ribbongroup-fixed-size#46468</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonGroup Fixed Size : When will the previous post be...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46445&amp;title=ribbongroup-fixed-size#46445</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4375">TShriver</a><br /><strong>Subject:</strong> 13595<br /><strong>Posted:</strong> 09 March 2009 at 2:48pm<br /><br />When will the previous post be made public? <DIV>&nbsp;</DIV><DIV>"thank you, but I have the control style set "Control.Style = xtpButtonCaption" which is just as in the RibbonSample App.&nbsp; Here is my code: <DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>174&nbsp;&nbsp;&nbsp; Set GroupAlerts = TabHome.Groups.AddGroup("Alerts", ID_GROUP_ALERT)<BR>176&nbsp;&nbsp;&nbsp; Set Control = GroupAlerts.Add(xtpControlLabel, 0, "KWH")<BR>178&nbsp;&nbsp;&nbsp; Control.Style = xtpButtonCaption</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dim ControlEdit As CommandBarEdit<BR>180&nbsp;&nbsp;&nbsp; Set ControlEdit = GroupAlerts.Add(xtpControlEdit, ID_KWH_ALERT_UP, "&nbsp;&nbsp;&nbsp;&nbsp; Up:")<BR>182&nbsp;&nbsp;&nbsp; ControlEdit.Width = 120<BR>184&nbsp;&nbsp;&nbsp; ControlEdit.ShowSpinButtons = True<BR>186&nbsp;&nbsp;&nbsp; ControlEdit.Text = g_lKWHAlert_up<BR>&nbsp;&nbsp; <BR>188&nbsp;&nbsp;&nbsp; Set ControlEdit = GroupAlerts.Add(xtpControlEdit, ID_KWH_ALERT_DOWN, "Down:")<BR>190&nbsp;&nbsp;&nbsp; ControlEdit.Width = 120<BR>192&nbsp;&nbsp;&nbsp; ControlEdit.ShowSpinButtons = True<BR>194&nbsp;&nbsp;&nbsp; ControlEdit.Text = g_lKWHAlert_down</DIV><DIV>&nbsp;</DIV><DIV>196&nbsp;&nbsp;&nbsp; Set Control = GroupAlerts.Add(xtpControlLabel, 0, "Voltage")<BR>198&nbsp;&nbsp;&nbsp; Control.Style = xtpButtonCaption<BR>200&nbsp;&nbsp;&nbsp; Control.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp; <BR>202&nbsp;&nbsp;&nbsp; Set ControlEdit = GroupAlerts.Add(xtpControlEdit, ID_VOLTAGE_ALERT_UP, "&nbsp;&nbsp;&nbsp;&nbsp; Up:")<BR>204&nbsp;&nbsp;&nbsp; ControlEdit.Width = 120<BR>206&nbsp;&nbsp;&nbsp; ControlEdit.ShowSpinButtons = True<BR>208&nbsp;&nbsp;&nbsp; ControlEdit.Text = g_lVoltageAlert_up<BR>&nbsp;&nbsp; <BR>210&nbsp;&nbsp;&nbsp; Set ControlEdit = GroupAlerts.Add(xtpControlEdit, ID_VOLTAGE_ALERT_DOWN, "Down:")<BR>212&nbsp;&nbsp;&nbsp; ControlEdit.Width = 120<BR>214&nbsp;&nbsp;&nbsp; ControlEdit.ShowSpinButtons = True<BR>216&nbsp;&nbsp;&nbsp; ControlEdit.Text = g_lVoltageAlert_down"</DIV></DIV>]]>
   </description>
   <pubDate>Mon, 09 Mar 2009 14:48:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46445&amp;title=ribbongroup-fixed-size#46445</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonGroup Fixed Size : Hi,  Add pControl-&amp;gt;SetStyle(xtpButtonCaption); for...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46334&amp;title=ribbongroup-fixed-size#46334</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 13595<br /><strong>Posted:</strong> 06 March 2009 at 2:01am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Add</DIV><DIV>pControl-&gt;SetStyle(xtpButtonCaption);</DIV><DIV>for top labels.</DIV>]]>
   </description>
   <pubDate>Fri, 06 Mar 2009 02:01:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46334&amp;title=ribbongroup-fixed-size#46334</guid>
  </item> 
  <item>
   <title><![CDATA[RibbonGroup Fixed Size : Hello,  I&amp;#039;m trying to accomplish...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46325&amp;title=ribbongroup-fixed-size#46325</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4375">TShriver</a><br /><strong>Subject:</strong> 13595<br /><strong>Posted:</strong> 05 March 2009 at 7:25pm<br /><br /><DIV>Hello,</DIV><DIV>&nbsp;</DIV><DIV>I'm trying to accomplish the same effect as demostrated in the RibbonSample whereby the RibbonGroup "Paragraph" shown below does not expand is size when the form is enlarged.</DIV><DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20090305_191943_Ribb&#111;nBarSample.jpg" border="0"></DIV><DIV>&nbsp;</DIV><DIV>As you can see from my attempt below in the RibbonGroup "Alerts" the size of the group is fine until the form is resized.</DIV><DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20090305_192235_Test1.jpg" border="0"></DIV><DIV>&nbsp;</DIV><DIV>When I enlarge the form, the RibbonGroup expands to fill the extra space available.&nbsp; I'd like it to remain as above.</DIV><DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20090305_192419_test2.jpg" border="0"></DIV><DIV>&nbsp;</DIV><DIV>Thank you!</DIV><DIV>&nbsp;</DIV><DIV>Tim</DIV>]]>
   </description>
   <pubDate>Thu, 05 Mar 2009 19:25:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13595&amp;PID=46325&amp;title=ribbongroup-fixed-size#46325</guid>
  </item> 
 </channel>
</rss>