<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Forms Controls and ActiveX Controls in Excel</title>
	<atom:link href="http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Mon, 15 Mar 2010 17:19:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-26282</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 01 Feb 2010 18:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-26282</guid>
		<description>James -

There is no built in way to dynamically format a scroll bar, but if you use a Controls Toolbox scrollbar, you can fake it:

&lt;pre class=&quot;vbasmall&quot;&gt;&lt;code&gt;&#039; ScrollBar1 has min=0 and max=255
Private Sub ScrollBar1_Change()
  Dim iVal As Long
  iVal = Me.ScrollBar1.Value
  Me.ScrollBar1.BackColor = RGB(iVal, iVal, iVal)
End Sub&lt;/code&gt;&lt;/pre&gt;

It isn&#039;t perfect: at the lower part of the range the shading is grainy. But you could adjust your algorithm to stay in the range that renders nicely.</description>
		<content:encoded><![CDATA[<p>James -</p>
<p>There is no built in way to dynamically format a scroll bar, but if you use a Controls Toolbox scrollbar, you can fake it:</p>
<pre class="vbasmall"><code>' ScrollBar1 has min=0 and max=255
Private Sub ScrollBar1_Change()
  Dim iVal As Long
  iVal = Me.ScrollBar1.Value
  Me.ScrollBar1.BackColor = RGB(iVal, iVal, iVal)
End Sub</code></pre>
<p>It isn&#8217;t perfect: at the lower part of the range the shading is grainy. But you could adjust your algorithm to stay in the range that renders nicely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-26281</link>
		<dc:creator>james</dc:creator>
		<pubDate>Mon, 01 Feb 2010 17:44:54 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-26281</guid>
		<description>can you make the scroll bar in excel 2007 change shading as the value increases.  For instance, as you slide the slider towards the right, can the area on its left change color to match the value, similar to conditional formatting</description>
		<content:encoded><![CDATA[<p>can you make the scroll bar in excel 2007 change shading as the value increases.  For instance, as you slide the slider towards the right, can the area on its left change color to match the value, similar to conditional formatting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edgar Hungers</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14630</link>
		<dc:creator>Edgar Hungers</dc:creator>
		<pubDate>Thu, 28 May 2009 13:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14630</guid>
		<description>Well, that&#039;s something to understand, I&#039;ll keep within the constraints and use What I know it&#039;s working fine. Thanks for those reminds and for the suggestions too.

Hope to bother you sometime again</description>
		<content:encoded><![CDATA[<p>Well, that&#8217;s something to understand, I&#8217;ll keep within the constraints and use What I know it&#8217;s working fine. Thanks for those reminds and for the suggestions too.</p>
<p>Hope to bother you sometime again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14628</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 28 May 2009 11:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14628</guid>
		<description>If you are going to move to 2007 anytime soon, you may as well get used to a worksheet-based display. Excel 2007 has removed the ability to size a chart based on the window size. You can hide gridlines and make the sheet look like a professional display.

Like the chart window sizing thing in 2007 or the flaky listbox beehavior, it&#039;s better not to ask why Microsoft does what it does or when Microsoft will do what you want, nor to expect that people have done the impossible in an add-in. It&#039;s better instead to accept the way things are, work within the constraints, and hope they don&#039;t mess it up in a future version.</description>
		<content:encoded><![CDATA[<p>If you are going to move to 2007 anytime soon, you may as well get used to a worksheet-based display. Excel 2007 has removed the ability to size a chart based on the window size. You can hide gridlines and make the sheet look like a professional display.</p>
<p>Like the chart window sizing thing in 2007 or the flaky listbox beehavior, it&#8217;s better not to ask why Microsoft does what it does or when Microsoft will do what you want, nor to expect that people have done the impossible in an add-in. It&#8217;s better instead to accept the way things are, work within the constraints, and hope they don&#8217;t mess it up in a future version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edgar Hungers</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14618</link>
		<dc:creator>Edgar Hungers</dc:creator>
		<pubDate>Thu, 28 May 2009 03:01:56 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14618</guid>
		<description>Also, just a couple of questions:
Why is it that the Toolbar and its ActiveX controls aren&#039;t available on a ChartSheet ?There would be some Kind of Add-in that could make them Available?

This conversation takes me to consider that we both do not Know the reasons, if not. You&#039;d have given me the hints. Anyway, maybe you could reach a more comprehensive understanding of this than me. And maybe give an answer to that.</description>
		<content:encoded><![CDATA[<p>Also, just a couple of questions:<br />
Why is it that the Toolbar and its ActiveX controls aren&#8217;t available on a ChartSheet ?There would be some Kind of Add-in that could make them Available?</p>
<p>This conversation takes me to consider that we both do not Know the reasons, if not. You&#8217;d have given me the hints. Anyway, maybe you could reach a more comprehensive understanding of this than me. And maybe give an answer to that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edgar Hungers</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14617</link>
		<dc:creator>Edgar Hungers</dc:creator>
		<pubDate>Thu, 28 May 2009 02:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14617</guid>
		<description>Jon;
Yes, in a worksheet it works fine, I already had tested that, as long as I use the AxtiveX ListBox from the Toolbar and not from the Forms Bar, thus giving me more functionality and capacity of changing its properties. But I need to use the Chart sheet for a profesional approach of the statistics I&#039;m presenting. However, the ListBox from The forms Menu, only one avilable on the Chart Sheet, has this kind of Object Class developed-bug. It seems as if it was not fully developed. I mean the Listbox Class for this instance. Besides that When I move it, it leaves some Object copy from the position where I move it. It&#039;s not right this Object Class definitly. But the ComboBox, It works fully Ok. And I already have one on My chart, so I wanted to use the ListBox to show a sub-Clasification for the data the user to watch on that Chart. And the ListBox seemed to  fit perfect for that, but I see I&#039;ll have to use another ComboBox, as far as now. 
Jon, Dont let this go by, if you have the chance to consult this with someone else, please try to see if there is a debugger for this and let me Know.

Thanks for your support.   Regards</description>
		<content:encoded><![CDATA[<p>Jon;<br />
Yes, in a worksheet it works fine, I already had tested that, as long as I use the AxtiveX ListBox from the Toolbar and not from the Forms Bar, thus giving me more functionality and capacity of changing its properties. But I need to use the Chart sheet for a profesional approach of the statistics I&#8217;m presenting. However, the ListBox from The forms Menu, only one avilable on the Chart Sheet, has this kind of Object Class developed-bug. It seems as if it was not fully developed. I mean the Listbox Class for this instance. Besides that When I move it, it leaves some Object copy from the position where I move it. It&#8217;s not right this Object Class definitly. But the ComboBox, It works fully Ok. And I already have one on My chart, so I wanted to use the ListBox to show a sub-Clasification for the data the user to watch on that Chart. And the ListBox seemed to  fit perfect for that, but I see I&#8217;ll have to use another ComboBox, as far as now.<br />
Jon, Dont let this go by, if you have the chance to consult this with someone else, please try to see if there is a debugger for this and let me Know.</p>
<p>Thanks for your support.   Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14615</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 28 May 2009 01:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14615</guid>
		<description>Well, if one approach fails, another might do better. 

If you have to use a chart sheet, pop up a userform with a listbox. It requires maybe a bit more programming, but it should work fine.

If you can use an chart embedded in a worksheet, embed the listbox in the sheet next to the chart. This worked fine in my quick testing.</description>
		<content:encoded><![CDATA[<p>Well, if one approach fails, another might do better. </p>
<p>If you have to use a chart sheet, pop up a userform with a listbox. It requires maybe a bit more programming, but it should work fine.</p>
<p>If you can use an chart embedded in a worksheet, embed the listbox in the sheet next to the chart. This worked fine in my quick testing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edgar Hungers</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14612</link>
		<dc:creator>Edgar Hungers</dc:creator>
		<pubDate>Thu, 28 May 2009 00:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14612</guid>
		<description>Hi again fellow,
I&#039;m sorry for not to mention that i was in Excel 2003. and yes it&#039;s been really upset to manage that, more of that is that I cannot use the additem method. i mean doesn&#039;t work rigth. I&#039;m going and try again. and stiil wanting to fix it. cause i want to change my chart&#039;s source according to selections made on that listbox. Please keep trying. I&#039;m really counting more on your skills and expertise than in my willing. but i&#039;ll keep trying</description>
		<content:encoded><![CDATA[<p>Hi again fellow,<br />
I&#8217;m sorry for not to mention that i was in Excel 2003. and yes it&#8217;s been really upset to manage that, more of that is that I cannot use the additem method. i mean doesn&#8217;t work rigth. I&#8217;m going and try again. and stiil wanting to fix it. cause i want to change my chart&#8217;s source according to selections made on that listbox. Please keep trying. I&#8217;m really counting more on your skills and expertise than in my willing. but i&#8217;ll keep trying</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14607</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 27 May 2009 22:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14607</guid>
		<description>I&#039;ve never noticed this, I expected it would be a version-specific problem, but I saw the problem in Excel 2003.

I don&#039;t know how to avoid the issue.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never noticed this, I expected it would be a version-specific problem, but I saw the problem in Excel 2003.</p>
<p>I don&#8217;t know how to avoid the issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edgar Hungers</title>
		<link>http://peltiertech.com/WordPress/forms-controls-and-activex-controls-in-excel/comment-page-1/#comment-14604</link>
		<dc:creator>Edgar Hungers</dc:creator>
		<pubDate>Wed, 27 May 2009 21:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=71#comment-14604</guid>
		<description>Hi, Great pages and information from. You.
This time I have a question, maybe you could help me solve it.
I inserted a ListBox on a Chart. I used the listfillrange property to insert the values i needed. But after I resize the listbox or after i apply this line of code: listBox1.formatcontrol.Removeallitem to re-populate it. The values? or the font? inside the ListBox kind of disappeared or get chunked. Please try it and if you have any answer. Please Tell me. This is giving me a real headache

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, Great pages and information from. You.<br />
This time I have a question, maybe you could help me solve it.<br />
I inserted a ListBox on a Chart. I used the listfillrange property to insert the values i needed. But after I resize the listbox or after i apply this line of code: listBox1.formatcontrol.Removeallitem to re-populate it. The values? or the font? inside the ListBox kind of disappeared or get chunked. Please try it and if you have any answer. Please Tell me. This is giving me a real headache</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
