<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: The SQL to the Orbiting Ball</title>
	<atom:link href="http://hoopercharles.wordpress.com/2010/09/12/the-sql-to-the-orbiting-ball/feed/" rel="self" type="application/rss+xml" />
	<link>http://hoopercharles.wordpress.com/2010/09/12/the-sql-to-the-orbiting-ball/</link>
	<description>Miscellaneous Random Oracle Topics: Stop, Think, ... Understand</description>
	<lastBuildDate>Mon, 13 May 2013 14:10:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Charles Hooper</title>
		<link>http://hoopercharles.wordpress.com/2010/09/12/the-sql-to-the-orbiting-ball/#comment-1833</link>
		<dc:creator><![CDATA[Charles Hooper]]></dc:creator>
		<pubDate>Tue, 14 Sep 2010 17:14:04 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=3252#comment-1833</guid>
		<description><![CDATA[The link to the original OrbitBall.zip file did not work - WordPress apparently prevented that attachment from being downloaded.  For the handful of people who tried to download the old 16 bit program, please try again.  I changed the secondary extension from .doc to .pdf to hopefully permit you to download the file (it now works for me).]]></description>
		<content:encoded><![CDATA[<p>The link to the original OrbitBall.zip file did not work &#8211; WordPress apparently prevented that attachment from being downloaded.  For the handful of people who tried to download the old 16 bit program, please try again.  I changed the secondary extension from .doc to .pdf to hopefully permit you to download the file (it now works for me).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Hooper</title>
		<link>http://hoopercharles.wordpress.com/2010/09/12/the-sql-to-the-orbiting-ball/#comment-1829</link>
		<dc:creator><![CDATA[Charles Hooper]]></dc:creator>
		<pubDate>Mon, 13 Sep 2010 12:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://hoopercharles.wordpress.com/?p=3252#comment-1829</guid>
		<description><![CDATA[A couple of suggestions.  If the oak disc does not rotate, immedaitely before this line:
[code]
Do While intQuit = False
[/code]

Add the following to give the computer 2 seconds to download each of the images (increase if necessary):
[code]
 
    For i = 1 to 8
        objOrbitBallPic.Src = &quot;http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&quot; &amp; cStr(i Mod 8 ) &amp; &quot;.png&quot;
        Wscript.Sleep 2000
    Next
[/code]

The rotating action seems to be a bit smoother if the sleep delay in the Do loop is changed from:
[code]
Wscript.Sleep 50
[/code]
To:
[code]
Wscript.Sleep 100
[/code]

If the above change is made, change (i/2 Mod 8 ) to (i Mod 8 ), change from:
[code]
objOrbitBallPic.Src = &quot;http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&quot; &amp; cStr(i/2 Mod 8 ) &amp; &quot;.png&quot;
[/code]
To:
[code]
objOrbitBallPic.Src = &quot;http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&quot; &amp; cStr(i Mod 8 ) &amp; &quot;.png&quot;
[/code]]]></description>
		<content:encoded><![CDATA[<p>A couple of suggestions.  If the oak disc does not rotate, immedaitely before this line:</p>
<pre class="brush: plain; title: ; notranslate">
Do While intQuit = False
</pre>
<p>Add the following to give the computer 2 seconds to download each of the images (increase if necessary):</p>
<pre class="brush: plain; title: ; notranslate">
 
    For i = 1 to 8
        objOrbitBallPic.Src = &quot;<a href="http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&#038;quot" rel="nofollow">http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&#038;quot</a>; &amp; cStr(i Mod 8 ) &amp; &quot;.png&quot;
        Wscript.Sleep 2000
    Next
</pre>
<p>The rotating action seems to be a bit smoother if the sleep delay in the Do loop is changed from:</p>
<pre class="brush: plain; title: ; notranslate">
Wscript.Sleep 50
</pre>
<p>To:</p>
<pre class="brush: plain; title: ; notranslate">
Wscript.Sleep 100
</pre>
<p>If the above change is made, change (i/2 Mod 8 ) to (i Mod 8 ), change from:</p>
<pre class="brush: plain; title: ; notranslate">
objOrbitBallPic.Src = &quot;<a href="http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&#038;quot" rel="nofollow">http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&#038;quot</a>; &amp; cStr(i/2 Mod 8 ) &amp; &quot;.png&quot;
</pre>
<p>To:</p>
<pre class="brush: plain; title: ; notranslate">
objOrbitBallPic.Src = &quot;<a href="http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&#038;quot" rel="nofollow">http://hoopercharles.files.wordpress.com/2010/09/sqlorbitingball&#038;quot</a>; &amp; cStr(i Mod 8 ) &amp; &quot;.png&quot;
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
