<?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 : Gallery Item ID</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Gallery Item ID]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 02:02:52 +0000</pubDate>
  <lastBuildDate>Mon, 19 Nov 2007 04:28:08 +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=8806</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[Gallery Item ID : Thanks - that worked fine. ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8806&amp;PID=28610&amp;title=gallery-item-id#28610</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1630">LeeHayton</a><br /><strong>Subject:</strong> 8806<br /><strong>Posted:</strong> 19 November 2007 at 4:28am<br /><br />Thanks - that worked fine.]]>
   </description>
   <pubDate>Mon, 19 Nov 2007 04:28:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8806&amp;PID=28610&amp;title=gallery-item-id#28610</guid>
  </item> 
  <item>
   <title><![CDATA[Gallery Item ID : Hi,  Just pasted from Rbbonsample:  ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8806&amp;PID=28560&amp;title=gallery-item-id#28560</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 8806<br /><strong>Posted:</strong> 17 November 2007 at 1:01am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Just pasted from Rbbonsample:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim Gallery As CommandBarGallery<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Gallery = Control<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Not Gallery.SelectedItem Is Nothing Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SelectedStyle = Gallery.SelectedItem.Id<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If</DIV>]]>
   </description>
   <pubDate>Sat, 17 Nov 2007 01:01:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8806&amp;PID=28560&amp;title=gallery-item-id#28560</guid>
  </item> 
  <item>
   <title><![CDATA[Gallery Item ID : How do I detect which gallery...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8806&amp;PID=28545&amp;title=gallery-item-id#28545</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1630">LeeHayton</a><br /><strong>Subject:</strong> 8806<br /><strong>Posted:</strong> 16 November 2007 at 10:11am<br /><br /><DIV>How do I detect which gallery Item has been clicked?</DIV><DIV>&nbsp;</DIV><DIV>When I run this code It does not display the Gallery Item ID but the ID of the Gallery.</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV><DIV>Lee</DIV><DIV>&nbsp;</DIV><DIV>Private Sub Form_Load()</DIV><DIV>&nbsp;&nbsp;&nbsp; Dim ComboPopup As CommandBar, cbp As CommandBarPopup, cbg As CommandBarGallery, cbgis As CommandBarGalleryItems, cbgi As CommandBarGalleryItem<BR>&nbsp;&nbsp;&nbsp; With CommandBars1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set cbp = .ActiveMenuBar.Controls.Add(xtpControlPopup, 1, "Add")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set cbg = cbp.CommandBar.Controls.Add(xtpControlGallery, ID_Garrery, "Gallery")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cbg.Height = 250<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cbg.Controls.Add xtpControlButton, 1, "Edit List"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'cbg.CloseSubMenuOnClick = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set cbgis = .CreateGalleryItems(ID_Gallery)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cbgis.ItemWidth = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'cbgis.ItemHeight = 26<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'cbgis.AddLabel "Gallery Items"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cbgis.AddItem 11, "Item 1"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cbgis.AddItem 12, "Item 2"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cbgis.AddItem 13, "Item 3"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set cbg.Items = cbgis<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; End With<BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>Private Sub CommandBars1_Execute(ByVal Control As XtremeCommandBars.ICommandBarControl)<BR>&nbsp;&nbsp;&nbsp; MsgBox Control.Id<BR>End Sub<BR></DIV>]]>
   </description>
   <pubDate>Fri, 16 Nov 2007 10:11:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8806&amp;PID=28545&amp;title=gallery-item-id#28545</guid>
  </item> 
 </channel>
</rss>