<?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 : Problem with ActiveX</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Problem with ActiveX]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 07:32:26 +0000</pubDate>
  <lastBuildDate>Mon, 13 Sep 2004 06:44:58 +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=279</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[Problem with ActiveX : OK, this was a problem and is...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=3103&amp;title=problem-with-activex#3103</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 279<br /><strong>Posted:</strong> 13 September 2004 at 6:44am<br /><br />OK, this was a problem and is fixed in the next version.<img src="http://forum.codejock.com/smileys/smiley1.gif" border="0">&nbsp;]]>
   </description>
   <pubDate>Mon, 13 Sep 2004 06:44:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=3103&amp;title=problem-with-activex#3103</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with ActiveX : No, I never found a solution to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=3080&amp;title=problem-with-activex#3080</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=259">jamauss</a><br /><strong>Subject:</strong> 279<br /><strong>Posted:</strong> 10 September 2004 at 5:14pm<br /><br />No, I never found a solution to it. Are you able to reproduce the problem?]]>
   </description>
   <pubDate>Fri, 10 Sep 2004 17:14:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=3080&amp;title=problem-with-activex#3080</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with ActiveX :  Did you ever find a solution...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=3044&amp;title=problem-with-activex#3044</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 279<br /><strong>Posted:</strong> 09 September 2004 at 7:54am<br /><br />Did you ever find a solution to this?]]>
   </description>
   <pubDate>Thu, 09 Sep 2004 07:54:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=3044&amp;title=problem-with-activex#3044</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with ActiveX : Hi Oleg,  My code is not anything...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=642&amp;title=problem-with-activex#642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=259">jamauss</a><br /><strong>Subject:</strong> 279<br /><strong>Posted:</strong> 09 December 2003 at 1:57am<br /><br /><P>Hi Oleg,</P><P>&nbsp;&nbsp; My code is not anything very complex. I have a constant named DATA_SOURCES_DROPDOWN that equals 217. I am using the&nbsp;CommandBars.ocx control&nbsp;on&nbsp;my own&nbsp;ActiveX Control. The&nbsp;CommandBars control placed on my activex control is named cbQueryDesigner. Here is basically what I am doing to create the toolbar....</P><P>' m_cbrQueryBuilder is DIM'd here but is actually a private member of the UserControl class</P><P>Dim m_cbrQueryBuilder as XtremeCommandBars.CommandBar</P><P>Dim objCommandBarCombo as XtremeCommandBars.CommandBarComboBox</P><P>Set m_cbrQueryBuilder = cbQueryDesigner.Add("Query Designer", xtpBarTop)</P><P>m_cbrQueryBuilder.EnableDocking xtpFlagAlignTop + xtpFlagStretched</P><P>m_cbrQueryBuilder.Visible = True</P><P>With m_cbrQueryBuilder.Controls</P><P>&nbsp;&nbsp; Set objCommandBarCombo = .Add(xtpControlComboBox, DATA_SOURCES_DROPDOWN, "Data Sources")</P><P>&nbsp;&nbsp; objCommandBarCombo.DropDownWidth = 400</P><P>&nbsp;&nbsp; objCommandBarCombo.DropDownListStyle = False</P><P>&nbsp;&nbsp; objCommandBarCombo.Width = 400</P><P>&nbsp;&nbsp; objCommandBarCombo.Enabled = True</P><P>End With</P><P>cbQueryDesigner.AddImageList imlToolbar</P><P>cbQueryDesigner.VisualTheme = xtpThemeOffice2003</P><P>' Then later on in another procedure I am filling the combo box like this</P><P>Dim DataSourceCombo as XtremeCommandBars.CommandBarComboBox</P><P>Set DataSourceCombo = m_cbrQueryBuilder.FindControl(, DATA_SOURCES_DROPDOWN, , True)</P><P>' I have a for next loop that then adds some text items and index values equivelent to</P><P>DataSourceCombo.AddItem "name1", 1</P><P>DataSourceCombo.AddItem "name2", 2</P><P>DataSourceCombo.AddItem "name3", 3</P><P>DataSourceCombo.Enabled = True</P><P>Set DataSourceCombo = Nothing</P>]]>
   </description>
   <pubDate>Tue, 09 Dec 2003 01:57:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=642&amp;title=problem-with-activex#642</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with ActiveX : What identifier you assign to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=635&amp;title=problem-with-activex#635</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 279<br /><strong>Posted:</strong> 09 December 2003 at 1:34am<br /><br /><P>What identifier you assign to drop down box? </P><P>Give me a piece of your code.</P>]]>
   </description>
   <pubDate>Tue, 09 Dec 2003 01:34:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=635&amp;title=problem-with-activex#635</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with ActiveX : I am using the most recent ActiveX...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=631&amp;title=problem-with-activex#631</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=259">jamauss</a><br /><strong>Subject:</strong> 279<br /><strong>Posted:</strong> 08 December 2003 at 12:12pm<br /><br /><P align=left>I am using the most recent ActiveX version of the CommandBars.ocx and I am finding that when I add a drop down box to my toolbar it becomes disabled&nbsp;even when I have not put code anywhere to disable it. I tried putting ComboBox.Enabled = True (where ComboBox references the drop down in my command bar) in my code and that didn't help. I can't figure out why my drop down is disabled and can't seem to enable it either. Anyone have any suggestions?</P><P align=left>Jason</P>]]>
   </description>
   <pubDate>Mon, 08 Dec 2003 12:12:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=279&amp;PID=631&amp;title=problem-with-activex#631</guid>
  </item> 
 </channel>
</rss>