<?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 : Vertical floating toolbar</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Vertical floating toolbar]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 09:33:33 +0000</pubDate>
  <lastBuildDate>Thu, 13 Oct 2016 16:38:52 +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=23160</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[Vertical floating toolbar : I think what you need is a DialogBar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75210&amp;title=vertical-floating-toolbar#75210</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3743">Carlos Rocha</a><br /><strong>Subject:</strong> 23160<br /><strong>Posted:</strong> 13 October 2016 at 4:38pm<br /><br />I think what you need is a DialogBar with as many toolbars as the options you want, all of them docked to the top. I managed to do this to create a SideBar. <br>]]>
   </description>
   <pubDate>Thu, 13 Oct 2016 16:38:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75210&amp;title=vertical-floating-toolbar#75210</guid>
  </item> 
  <item>
   <title><![CDATA[Vertical floating toolbar : Your example creats a fixed toolbar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75207&amp;title=vertical-floating-toolbar#75207</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4754">Micca</a><br /><strong>Subject:</strong> 23160<br /><strong>Posted:</strong> 13 October 2016 at 9:34am<br /><br />Your example creats a fixed toolbar at the left edge of the window and not a floating toolbar, or?<br>I need a floating+vertical toolbar that the user can drag around...<br>]]>
   </description>
   <pubDate>Thu, 13 Oct 2016 09:34:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75207&amp;title=vertical-floating-toolbar#75207</guid>
  </item> 
  <item>
   <title><![CDATA[Vertical floating toolbar :  I know what is a vertical toolbar......]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75206&amp;title=vertical-floating-toolbar#75206</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 23160<br /><strong>Posted:</strong> 13 October 2016 at 9:04am<br /><br />I know what is a vertical toolbar... <img src="http://forum.codejock.com/smileys/smiley36.gif" border="0" alt="LOL" title="LOL" /><br><br><img src="http://www.vbcorner.net/images/codejock/ToolbarLeft.png" border="0" /><br><br><br>I use the next code with success:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim cToolbarLeft As CommandBar<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With CommandBars1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EnableCustomization False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Options.ShowExpandButtonAlways = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set cToolbarLeft = .Add("ToolbarLeft", xtpBarTop)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With cToolbarLeft<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowTextBelowIcons = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .SetIconSize 16, 16<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowGripper = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Customizable = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .EnableDocking xtpFlagStretched<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Closeable = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Position = xtpBarLeft<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .TextOrientation = xtpBarTextAuto<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Thu, 13 Oct 2016 09:04:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75206&amp;title=vertical-floating-toolbar#75206</guid>
  </item> 
  <item>
   <title><![CDATA[Vertical floating toolbar : xtpBarLeft docks the toolbar to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75205&amp;title=vertical-floating-toolbar#75205</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4754">Micca</a><br /><strong>Subject:</strong> 23160<br /><strong>Posted:</strong> 13 October 2016 at 4:34am<br /><br />xtpBarLeft docks the toolbar to the left edge and it changes the text orientation to vertical.<br><br>I need a floating toolbar with vertical aligned buttons (from the top to the bottom) and horizontal aligned icons/text...<br><br>Example:<br><br><img src="http://www.jeremieleroy.com/files/toolbar-medium4.png" height="290" width="610" border="0" /><br>]]>
   </description>
   <pubDate>Thu, 13 Oct 2016 04:34:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75205&amp;title=vertical-floating-toolbar#75205</guid>
  </item> 
  <item>
   <title><![CDATA[Vertical floating toolbar : Set Position property to xtpBarLeft...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75203&amp;title=vertical-floating-toolbar#75203</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 23160<br /><strong>Posted:</strong> 13 October 2016 at 2:53am<br /><br />Set Position property to xtpBarLeft<br>]]>
   </description>
   <pubDate>Thu, 13 Oct 2016 02:53:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75203&amp;title=vertical-floating-toolbar#75203</guid>
  </item> 
  <item>
   <title><![CDATA[Vertical floating toolbar : hi,is it possible to change the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75202&amp;title=vertical-floating-toolbar#75202</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4754">Micca</a><br /><strong>Subject:</strong> 23160<br /><strong>Posted:</strong> 12 October 2016 at 8:46pm<br /><br />hi,<br><br>is it possible to change the orientation of a floating toolbar from horizontal (buttons from left to right) to vertical (button from top to the bottom) but with horizontal text orientation?<br><br>]]>
   </description>
   <pubDate>Wed, 12 Oct 2016 20:46:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23160&amp;PID=75202&amp;title=vertical-floating-toolbar#75202</guid>
  </item> 
 </channel>
</rss>