<?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: Hiding the Cursor</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 19:28:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: pagedown pageup excel vba</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-33767</link>
		<dc:creator>pagedown pageup excel vba</dc:creator>
		<pubDate>Tue, 22 Jul 2008 14:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-33767</guid>
		<description>&lt;p&gt;[...] ScrollLock, PageUp, PageUp, Alt ... Import Text in vba (6) Doug Jenkins June 21, 2008 ...http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/Increase Excel ExpertiseThese excel tips provide help in many areas, including basic settings, ... [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] ScrollLock, PageUp, PageUp, Alt &#8230; Import Text in vba (6) Doug Jenkins June 21, 2008 &#8230;<a href="http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/Increase" rel="nofollow">http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/Increase</a> Excel ExpertiseThese excel tips provide help in many areas, including basic settings, &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepal</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21523</link>
		<dc:creator>Deepal</dc:creator>
		<pubDate>Thu, 09 Nov 2006 17:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21523</guid>
		<description>&lt;p&gt;You could also just use the original macro you first posted and then just hide the first column (i have no idea why this works).  It eliminates having to scroll back up, though you&#039;d have to insert and hide the first column of each worksheet...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You could also just use the original macro you first posted and then just hide the first column (i have no idea why this works).  It eliminates having to scroll back up, though you&#8217;d have to insert and hide the first column of each worksheet&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beate Schmitz</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21073</link>
		<dc:creator>Beate Schmitz</dc:creator>
		<pubDate>Tue, 26 Sep 2006 12:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21073</guid>
		<description>&lt;p&gt;Hi Sam,&lt;/p&gt;
&lt;p&gt;nice improvement.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br&gt;
Beate&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Sam,</p>
<p>nice improvement.</p>
<p>Regards,<br />
Beate</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Hunt</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21071</link>
		<dc:creator>Andrew Hunt</dc:creator>
		<pubDate>Tue, 26 Sep 2006 10:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21071</guid>
		<description>&lt;p&gt;Dick&lt;/p&gt;
&lt;p&gt;Disable Screen updating and move cursor just out of view for screen capture&lt;/p&gt;
&lt;p&gt;Sub MoveCursor()&lt;br&gt;
        Application.ScreenUpdating = False&lt;br&gt;
        Do&lt;br&gt;
          ActiveCell.Offset(1, 0).Select&lt;br&gt;
        Loop Until Intersect(Rows(ActiveCell.Row), ActiveWindow.VisibleRange) Is Nothing&lt;/p&gt;
&lt;p&gt;        Do&lt;br&gt;
          ActiveCell.Offset(0, 1).Select&lt;br&gt;
        Loop Until Intersect(Columns(ActiveCell.Column), ActiveWindow.VisibleRange) Is Nothing&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Regards&lt;br&gt;
Andrew&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick</p>
<p>Disable Screen updating and move cursor just out of view for screen capture</p>
<p>Sub MoveCursor()<br />
        Application.ScreenUpdating = False<br />
        Do<br />
          ActiveCell.Offset(1, 0).Select<br />
        Loop Until Intersect(Rows(ActiveCell.Row), ActiveWindow.VisibleRange) Is Nothing</p>
<p>        Do<br />
          ActiveCell.Offset(0, 1).Select<br />
        Loop Until Intersect(Columns(ActiveCell.Column), ActiveWindow.VisibleRange) Is Nothing<br />
End Sub</p>
<p>Regards<br />
Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21070</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Tue, 26 Sep 2006 10:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21070</guid>
		<description>&lt;p&gt;Beate...&lt;/p&gt;
&lt;p&gt;Add another line..&lt;/p&gt;
&lt;p&gt;CommandButton1.Visible = False&lt;/p&gt;
&lt;p&gt;The button and the cursor will disappear &lt;/p&gt;
&lt;p&gt;and in the worksheet selection change&lt;/p&gt;
&lt;p&gt;Private Sub Worksheet_SelectionChange(ByVal Target As Range)&lt;br&gt;
CommandButton1.Visible = True&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
&lt;p&gt;to bring the button back...&lt;/p&gt;
&lt;p&gt;Sam&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Beate&#8230;</p>
<p>Add another line..</p>
<p>CommandButton1.Visible = False</p>
<p>The button and the cursor will disappear </p>
<p>and in the worksheet selection change</p>
<p>Private Sub Worksheet_SelectionChange(ByVal Target As Range)<br />
CommandButton1.Visible = True</p>
<p>End Sub</p>
<p>to bring the button back&#8230;</p>
<p>Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beate Schmitz</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21060</link>
		<dc:creator>Beate Schmitz</dc:creator>
		<pubDate>Mon, 25 Sep 2006 22:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21060</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;another proposal:&lt;/p&gt;
&lt;p&gt;Put a CommandButton into the sheet with following code:&lt;/p&gt;
&lt;p&gt;Private Sub CommandButton1_Click()&lt;br&gt;
ActiveWindow.ScrollIntoView 0, 0, 1, 1&lt;br&gt;
CommandButton1.TakeFocusOnClick = True&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Regards,&lt;br&gt;
Beate&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>another proposal:</p>
<p>Put a CommandButton into the sheet with following code:</p>
<p>Private Sub CommandButton1_Click()<br />
ActiveWindow.ScrollIntoView 0, 0, 1, 1<br />
CommandButton1.TakeFocusOnClick = True<br />
End Sub</p>
<p>Regards,<br />
Beate</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21053</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Mon, 25 Sep 2006 15:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21053</guid>
		<description>&lt;p&gt;Thanks guys, I&#039;ll check out your suggestions.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks guys, I&#8217;ll check out your suggestions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tushar Mehta</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21050</link>
		<dc:creator>Tushar Mehta</dc:creator>
		<pubDate>Mon, 25 Sep 2006 13:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21050</guid>
		<description>&lt;p&gt;Neil: I use a shareware product HyperSnap from &lt;a href=&quot;http://www.hyperionics.com/&quot; rel=&quot;nofollow&quot;&gt;http://www.hyperionics.com/&lt;/a&gt;  It has lots of bells and whistles I have never used.  I&#039;ve used its ability to (a) define the region to snap, (b) optionally capture the cursor, and (c) snap a picture after a delay.  Combine them and it&#039;s possible to show all kinds of things.&lt;/p&gt;
&lt;p&gt;A competitor to HyperSnap that others have made very positive comments about is SnagIt from &lt;a href=&quot;http://www.techsmith.com/&quot; rel=&quot;nofollow&quot;&gt;http://www.techsmith.com/&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Neil: I use a shareware product HyperSnap from <a href="http://www.hyperionics.com/" rel="nofollow">http://www.hyperionics.com/</a>  It has lots of bells and whistles I have never used.  I&#8217;ve used its ability to (a) define the region to snap, (b) optionally capture the cursor, and (c) snap a picture after a delay.  Combine them and it&#8217;s possible to show all kinds of things.</p>
<p>A competitor to HyperSnap that others have made very positive comments about is SnagIt from <a href="http://www.techsmith.com/" rel="nofollow">http://www.techsmith.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pope</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21047</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Mon, 25 Sep 2006 13:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21047</guid>
		<description>&lt;p&gt;Neil:&lt;/p&gt;
&lt;p&gt;Use a picture of a cursor in you excel workbook. You can then place this where ever you want and then do a printscreen.&lt;br&gt;
Check your Windows directory for a folder called Cursors.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Neil:</p>
<p>Use a picture of a cursor in you excel workbook. You can then place this where ever you want and then do a printscreen.<br />
Check your Windows directory for a folder called Cursors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gruff999</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/09/22/hiding-the-cursor/#comment-21046</link>
		<dc:creator>gruff999</dc:creator>
		<pubDate>Mon, 25 Sep 2006 13:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1513#comment-21046</guid>
		<description>&lt;p&gt;Neil,&lt;/p&gt;
&lt;p&gt;I use a freeware screen grabber called HardCopy (http://www.hardcopy.de) which allows you to insert a variety of standard cursor shapes (arrow, I-beam, egg-timer etc). It won&#039;t allow you to do stuff like the cursor you get when hovering over the join between two columns but maybe you can draw your own close approximation.&lt;/p&gt;
&lt;p&gt;Gareth&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Neil,</p>
<p>I use a freeware screen grabber called HardCopy (<a href="http://www.hardcopy.de" rel="nofollow">http://www.hardcopy.de</a>) which allows you to insert a variety of standard cursor shapes (arrow, I-beam, egg-timer etc). It won&#8217;t allow you to do stuff like the cursor you get when hovering over the join between two columns but maybe you can draw your own close approximation.</p>
<p>Gareth</p>
]]></content:encoded>
	</item>
</channel>
</rss>

