<?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: Userforms: SpinButton Control</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/07/01/userforms-spinbutton-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/07/01/userforms-spinbutton-control/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Tue, 07 Feb 2012 23:32:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: chaz</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/07/01/userforms-spinbutton-control/#comment-20734</link>
		<dc:creator>chaz</dc:creator>
		<pubDate>Fri, 25 Aug 2006 01:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=666#comment-20734</guid>
		<description>&lt;p&gt;I&#039;d love to understand what you were doing in that code..&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;d love to understand what you were doing in that code..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mur</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/07/01/userforms-spinbutton-control/#comment-19570</link>
		<dc:creator>mur</dc:creator>
		<pubDate>Fri, 28 Apr 2006 02:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=666#comment-19570</guid>
		<description>&lt;p&gt;David, you will have to use the value of the spinbutton to point to the correct worksheet to copy from. Something like this...&lt;/p&gt;
&lt;p&gt;Private Sub SpinButton1_SpinDown()&lt;br&gt;
Worksheets(&quot;Round &quot; &amp; Cstr(spinbutton1.value)).Range(&quot;A1:G19?).Copy&lt;br&gt;
ActiveSheet.Paste Destination:=Worksheets(&quot;Fixture&quot;).Range(&quot;A2:G19?)&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;You&#039;ll need to set the spinbutton value and limit it&#039;s range from 1 to 20 for that to work too... Set the min property to 1, and the max property to 20 to achieve this.&lt;/p&gt;
&lt;p&gt;hth&lt;br&gt;
mur&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>David, you will have to use the value of the spinbutton to point to the correct worksheet to copy from. Something like this&#8230;</p>
<p>Private Sub SpinButton1_SpinDown()<br />
Worksheets(&#8220;Round &#8221; &amp; Cstr(spinbutton1.value)).Range(&#8220;A1:G19?).Copy<br />
ActiveSheet.Paste Destination:=Worksheets(&#8220;Fixture&#8221;).Range(&#8220;A2:G19?)<br />
End Sub</p>
<p>You&#8217;ll need to set the spinbutton value and limit it&#8217;s range from 1 to 20 for that to work too&#8230; Set the min property to 1, and the max property to 20 to achieve this.</p>
<p>hth<br />
mur</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David kamean</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/07/01/userforms-spinbutton-control/#comment-19459</link>
		<dc:creator>David kamean</dc:creator>
		<pubDate>Mon, 10 Apr 2006 06:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=666#comment-19459</guid>
		<description>&lt;p&gt;I am trying to us a spin button to navagate through 20 worksheets and display them one at a time on the first Worksheet named fixture and each worksheet is named &quot;Round n&quot;.&lt;br&gt;
I have been using this code&lt;/p&gt;
&lt;p&gt;Private Sub SpinButton1_SpinDown()&lt;br&gt;
Worksheets(&quot;Round 1?).Range(&quot;A1:G19?).Copy&lt;br&gt;
ActiveSheet.Paste Destination:=Worksheets(&quot;Fixture&quot;).Range(&quot;A2:G19?)&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Private Sub SpinButton1_SpinUp()&lt;br&gt;
Worksheets(&quot;Round 20?).Range(&quot;A1:G19?).Copy&lt;br&gt;
ActiveSheet.Paste Destination:=Worksheets(&quot;Fixture&quot;).Range(&quot;A2:G19?)&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;I cannot see in any of excel help files how to use next position or increment position like in C#.&lt;/p&gt;
&lt;p&gt;I hope you can help&lt;br&gt;
David&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am trying to us a spin button to navagate through 20 worksheets and display them one at a time on the first Worksheet named fixture and each worksheet is named &#8220;Round n&#8221;.<br />
I have been using this code</p>
<p>Private Sub SpinButton1_SpinDown()<br />
Worksheets(&#8220;Round 1?).Range(&#8220;A1:G19?).Copy<br />
ActiveSheet.Paste Destination:=Worksheets(&#8220;Fixture&#8221;).Range(&#8220;A2:G19?)<br />
End Sub</p>
<p>Private Sub SpinButton1_SpinUp()<br />
Worksheets(&#8220;Round 20?).Range(&#8220;A1:G19?).Copy<br />
ActiveSheet.Paste Destination:=Worksheets(&#8220;Fixture&#8221;).Range(&#8220;A2:G19?)<br />
End Sub</p>
<p>I cannot see in any of excel help files how to use next position or increment position like in C#.</p>
<p>I hope you can help<br />
David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bartek</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/07/01/userforms-spinbutton-control/#comment-5358</link>
		<dc:creator>bartek</dc:creator>
		<pubDate>Sun, 16 Jan 2005 15:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=666#comment-5358</guid>
		<description>&lt;p&gt;Well I&#039;m looking for a code that links a spinbutton with frame or dsomething like that If you can help me I&#039;m looking forward to it. Thanks any way.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Well I&#8217;m looking for a code that links a spinbutton with frame or dsomething like that If you can help me I&#8217;m looking forward to it. Thanks any way.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

