<?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 : Ribbon Non Breaking Caption. How to?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Ribbon Non Breaking Caption. How to?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 14 Jun 2026 22:08:20 +0000</pubDate>
  <lastBuildDate>Fri, 11 Sep 2009 10:15:45 +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=15155</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[Ribbon Non Breaking Caption. How to? : Great!     Thank you. ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15155&amp;PID=52937&amp;title=ribbon-non-breaking-caption-how-to#52937</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2720">Albert1</a><br /><strong>Subject:</strong> 15155<br /><strong>Posted:</strong> 11 September 2009 at 10:15am<br /><br />Great! <img src="http://forum.codejock.com/smileys/smiley20.gif" border="0"><DIV></DIV><DIV></DIV><DIV>&nbsp;</DIV><DIV>Thank you.</DIV>]]>
   </description>
   <pubDate>Fri, 11 Sep 2009 10:15:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15155&amp;PID=52937&amp;title=ribbon-non-breaking-caption-how-to#52937</guid>
  </item> 
  <item>
   <title><![CDATA[Ribbon Non Breaking Caption. How to? : Try using the non-breaking space...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15155&amp;PID=52935&amp;title=ribbon-non-breaking-caption-how-to#52935</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 15155<br /><strong>Posted:</strong> 11 September 2009 at 9:33am<br /><br />Try using the non-breaking space character Chr$(160) instead of the space...so:<br><br>"foxy" &amp; Chr$(160) &amp; "lady"<br><br>should work (I just tried it with the CJ Ribbon sample and it works for me).<br>]]>
   </description>
   <pubDate>Fri, 11 Sep 2009 09:33:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15155&amp;PID=52935&amp;title=ribbon-non-breaking-caption-how-to#52935</guid>
  </item> 
  <item>
   <title><![CDATA[Ribbon Non Breaking Caption. How to? :   Hello,  in a group of my...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15155&amp;PID=52927&amp;title=ribbon-non-breaking-caption-how-to#52927</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2720">Albert1</a><br /><strong>Subject:</strong> 15155<br /><strong>Posted:</strong> 11 September 2009 at 3:52am<br /><br /><DIV></DIV><DIV></DIV><DIV>Hello,</DIV><DIV>&nbsp;</DIV><DIV>in a group of my ribbon I need&nbsp;an icon&nbsp;with caption below. I would like to get the caption&nbsp;in a single line without line break. How can I achieve this result?</DIV><DIV>I&nbsp;tried different ways:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;<table width="99%"><tr><td><pre class="BBcode"></DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' 1 standard syntax</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set gr = Sk.Groups.AddGroup("", 1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Item = gr.Add(XtremeCommandBars.XTPControlType.xtpControlButton, ID_X, "foxy lady")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.Style = xtpButtonIconAndCaptionBelow<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.IconId = ID_ICON</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set gr = Sk.Groups.AddGroup("", 2)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Item = gr.Add(XtremeCommandBars.XTPControlType.xtpControlButton, ID_X, "foxy lady")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.Style = xtpButtonIconAndCaption<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.IconId = ID_ICON<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' 3 set width&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set gr = Sk.Groups.AddGroup("", 3)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Item = gr.Add(XtremeCommandBars.XTPControlType.xtpControlButton, ID_X, "foxy lady")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.Style = xtpButtonIconAndCaptionBelow<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.IconId = ID_ICON<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.Width = 200<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '&nbsp;4 use underscore<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set gr = Sk.Groups.AddGroup("", 4)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Item = gr.Add(XtremeCommandBars.XTPControlType.xtpControlButton, ID_X, "foxy_lady")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.Style = xtpButtonIconAndCaptionBelow<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.IconId = ID_ICON</DIV><DIV></pre></td></tr></table></DIV><DIV>&nbsp;</DIV><DIV>and this is what I got:</DIV><DIV>&nbsp;</DIV><DIV><img src="http://forum.codejock.com/uploads/20090911_034835_ribb&#111;n.png" border="0"></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>I would like to get&nbsp; style 4 (I got this using underscore "_" between words) but I noticed sometime underscore is becoming visible (argghhh!).</DIV><DIV>&nbsp;</DIV><DIV>Any suggestion?</DIV><DIV>TY</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 11 Sep 2009 03:52:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15155&amp;PID=52927&amp;title=ribbon-non-breaking-caption-how-to#52927</guid>
  </item> 
 </channel>
</rss>