<?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 : Combo/Gallery assign initial value</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Combo/Gallery assign initial value]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 03:45:52 +0000</pubDate>
  <lastBuildDate>Fri, 02 Nov 2007 09:34:32 +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=8641</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[Combo/Gallery assign initial value : Wonderful. That works!  Thanks....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8641&amp;PID=28016&amp;title=combo-gallery-assign-initial-value#28016</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3323">indices</a><br /><strong>Subject:</strong> 8641<br /><strong>Posted:</strong> 02 November 2007 at 9:34am<br /><br />Wonderful. That works!<DIV>&nbsp;</DIV><DIV>Thanks.</DIV>]]>
   </description>
   <pubDate>Fri, 02 Nov 2007 09:34:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8641&amp;PID=28016&amp;title=combo-gallery-assign-initial-value#28016</guid>
  </item> 
  <item>
   <title><![CDATA[Combo/Gallery assign initial value : Hi,  You have add update handler...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8641&amp;PID=28010&amp;title=combo-gallery-assign-initial-value#28010</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 8641<br /><strong>Posted:</strong> 02 November 2007 at 2:10am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>You have add update handler for ID_AUTO_MODE combo and CurrentComboIndex variable.</DIV><DIV>&nbsp;</DIV><DIV>Case&nbsp; ID_AUTO_MODE:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If (Control.Type = xtpControlComboBox) Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Control.ListIndex =&nbsp;CurrentComboIndex<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If</DIV>]]>
   </description>
   <pubDate>Fri, 02 Nov 2007 02:10:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8641&amp;PID=28010&amp;title=combo-gallery-assign-initial-value#28010</guid>
  </item> 
  <item>
   <title><![CDATA[Combo/Gallery assign initial value : I am trying to create acombobox...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8641&amp;PID=28006&amp;title=combo-gallery-assign-initial-value#28006</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3323">indices</a><br /><strong>Subject:</strong> 8641<br /><strong>Posted:</strong> 01 November 2007 at 10:32pm<br /><br /><P>I am trying to create a&nbsp;combo&nbsp;box which popups up a gallery instead of the dropdown. How can I assign&nbsp;initial combo box text or listindex value. I&nbsp;don't want to enable DropDownListStyle=True since the user has to choice one of the choices&nbsp;from the gallery rather than type in some value.&nbsp;&nbsp;&nbsp; </P><DIV>&nbsp;&nbsp;&nbsp; Dim oCmbAnnotationPopup As XtremeCommandBars.CommandBar<BR>&nbsp;&nbsp;&nbsp; Dim GalleryMode As XtremeCommandBars.CommandBarGallery<BR>&nbsp;&nbsp;&nbsp; Dim ItemsMode As XtremeCommandBars.CommandBarGalleryItems<BR>&nbsp;&nbsp;&nbsp; Dim oCmbMode As XtremeCommandBars.CommandBarComboBox</DIV><P>&nbsp;&nbsp;&nbsp; Set ItemsMode = CommandBars.CreateGalleryItems(ID_AUTO_MODE)<BR>&nbsp;&nbsp;&nbsp; ItemsMode.Icons = Me.ImageManagerAnnotations.Icons<BR>&nbsp;&nbsp;&nbsp; ItemsMode.ItemWidth = 160<BR>&nbsp;&nbsp;&nbsp; ItemsMode.ItemHeight = 50</P><P>&nbsp;&nbsp;&nbsp; ItemsMode.AddItem 7000, "First"<BR>&nbsp;&nbsp;&nbsp; ItemsMode.AddItem 7001, "Second"<BR>&nbsp;&nbsp;&nbsp; ItemsMode.AddItem 7002, "Third"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set oCmbMode = GroupAnnotations.Add(xtpControlComboBox, ID_AUTO_MODE, "")<BR>&nbsp;&nbsp;&nbsp; Set oCtlCmbAnnotationMode = oCmbMode<BR>&nbsp;&nbsp;&nbsp; oCmbMode.Width = 125<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp; Set oCmbAnnotationPopup = CommandBars.Add("Combo Popup", xtpBarComboBoxGalleryPopup)</P><P>&nbsp;&nbsp;&nbsp; Set GalleryMode = oCmbAnnotationPopup.Controls.Add(xtpControlGallery, ID_AUTO_MODE, "")<BR>&nbsp;&nbsp;&nbsp; GalleryMode.Width = 160<BR>&nbsp;&nbsp;&nbsp; GalleryMode.Height = 100<BR>&nbsp;&nbsp;&nbsp; GalleryMode.Style = xtpButtonIconAndCaption<BR>&nbsp;&nbsp;&nbsp; GalleryMode.ShowScrollbar = False<BR>&nbsp;&nbsp;&nbsp; Set GalleryMode.Items = ItemsMode</P><P>&nbsp;&nbsp;&nbsp; Set oCmbMode.CommandBar = oCmbAnnotationPopup</P><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 01 Nov 2007 22:32:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8641&amp;PID=28006&amp;title=combo-gallery-assign-initial-value#28006</guid>
  </item> 
 </channel>
</rss>