<?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 : Picturebox with Commandbars included</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Picturebox with Commandbars included]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 12 Jun 2026 03:53:05 +0000</pubDate>
  <lastBuildDate>Wed, 01 Oct 2008 05:54:42 +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=12240</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[Picturebox with Commandbars included : Hello - If you are trying to produce...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41553&amp;title=picturebox-with-commandbars-included#41553</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1630">LeeHayton</a><br /><strong>Subject:</strong> 12240<br /><strong>Posted:</strong> 01 October 2008 at 5:54am<br /><br /><DIV>Hello - If you are trying to produce thecomething like the picture below then do the following.</DIV><DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20081001_055358_SSTab.jpg" border="0"></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Place your PictureControl on the Tab and then place your commandbar control inside the PictureBox.</DIV><DIV>&nbsp;</DIV><DIV>Then use the following code to write to the command bar.</DIV><DIV>&nbsp;</DIV><DIV>Const ID_ARBEITSZEITERFASSUNG = 1<BR>Private Sub Form_Load()<BR>&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Dim cbb As CommandBarButton<BR>&nbsp;&nbsp;&nbsp; Set cbb = CommandBars.ActiveMenuBar.Controls.Add(xtpControlButton, ID_ARBEITSZEITERFASSUNG, "&amp;Arbeitszeiterfassung")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cbb.Style = xtpButtonIconAndCaption<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; CommandBars.VisualTheme = xtpThemeRibbon<BR>&nbsp;&nbsp;&nbsp; <BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>Regards</DIV><DIV>Lee<BR></DIV>]]>
   </description>
   <pubDate>Wed, 01 Oct 2008 05:54:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41553&amp;title=picturebox-with-commandbars-included#41553</guid>
  </item> 
  <item>
   <title><![CDATA[Picturebox with Commandbars included : Thanks, here is the sample code...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41366&amp;title=picturebox-with-commandbars-included#41366</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4567">MetallDesign</a><br /><strong>Subject:</strong> 12240<br /><strong>Posted:</strong> 24 September 2008 at 5:02pm<br /><br />Thanks, here is the sample code<br><br>&nbsp;&nbsp;&nbsp; CommandBarsGlobalSettings.App = App<br>&nbsp;&nbsp;&nbsp; CommandBars.EnableActions<br>&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set Toolbar = CommandBars.Add("Standard", xtpBarTop)<br>&nbsp;&nbsp;&nbsp; With Toolbar<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AddControl .Controls, xtpControlButton,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ID_ARBEITSZEITERFASSUNG, "&amp;Arbeitszeiterfassung", , , xtpButtonIconAndCaption<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; CommandBars.VisualTheme = xtpThemeRibbon<br>&nbsp;&nbsp;&nbsp; CommandBars.EnableOffice2007Frame False<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set CommandBars.Icons = ImageManager.Icons<br>&nbsp;&nbsp;&nbsp; CommandBars.Options.UseDisabledIcons = True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; CommandBars.Options.ShowExpandButtonAlways = False<br>&nbsp;&nbsp;&nbsp; CommandBars.Options.SetIconSize True, 42, 35<br><br>&nbsp;&nbsp;&nbsp; CommandBars.AttachToWindow picToolbar.hWnd<br><br><br>Visual Basic 6.0 SP6 and WIN XP SP2<br><br><br>brgds<br>]]>
   </description>
   <pubDate>Wed, 24 Sep 2008 17:02:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41366&amp;title=picturebox-with-commandbars-included#41366</guid>
  </item> 
  <item>
   <title><![CDATA[Picturebox with Commandbars included : Hi, This Gripper is MenuBar....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41313&amp;title=picturebox-with-commandbars-included#41313</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12240<br /><strong>Posted:</strong> 23 September 2008 at 2:26am<br /><br />Hi,<DIV>This Gripper is MenuBar. </DIV><DIV>Add some controls in code.</DIV>]]>
   </description>
   <pubDate>Tue, 23 Sep 2008 02:26:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41313&amp;title=picturebox-with-commandbars-included#41313</guid>
  </item> 
  <item>
   <title><![CDATA[Picturebox with Commandbars included : Helloi have the following problem....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41311&amp;title=picturebox-with-commandbars-included#41311</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4567">MetallDesign</a><br /><strong>Subject:</strong> 12240<br /><strong>Posted:</strong> 23 September 2008 at 2:20am<br /><br />Hello<br><br>i have the following problem. i use the ssTab Control from Microsoft and want to place a commandbar on it. i try with a picturebox in the left corner, but i see just the gripper................<br><br><br>pls help<br><br>any Idee?????????????<br><br><br><br>]]>
   </description>
   <pubDate>Tue, 23 Sep 2008 02:20:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12240&amp;PID=41311&amp;title=picturebox-with-commandbars-included#41311</guid>
  </item> 
 </channel>
</rss>