<?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: Old Comments and New ToolTips in Excel</title>
	<atom:link href="http://datapigtechnologies.com/blog/index.php/old-comments-and-new-tooltips-in-excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://datapigtechnologies.com/blog/index.php/old-comments-and-new-tooltips-in-excel/</link>
	<description>A DataPig Technologies Blog</description>
	<lastBuildDate>Wed, 08 Feb 2012 00:53:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: JamesDX</title>
		<link>http://datapigtechnologies.com/blog/index.php/old-comments-and-new-tooltips-in-excel/comment-page-1/#comment-3306</link>
		<dc:creator>JamesDX</dc:creator>
		<pubDate>Mon, 15 Feb 2010 12:14:40 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=822#comment-3306</guid>
		<description>Anyone know how to do things like this?</description>
		<content:encoded><![CDATA[<p>Anyone know how to do things like this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xfdeoglssfrees</title>
		<link>http://datapigtechnologies.com/blog/index.php/old-comments-and-new-tooltips-in-excel/comment-page-1/#comment-3113</link>
		<dc:creator>xfdeoglssfrees</dc:creator>
		<pubDate>Mon, 25 Jan 2010 11:31:18 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=822#comment-3113</guid>
		<description>Free Porn Search, Porn Search Engine, Adult Search, Free Galleries, Free Porn Videos, Adult Directory, Erotica Search
free porn search, porn search engine, adult search, free galleries, free porn videos, adult directory, erotica search, adult, find porn, milf, engine, cams, webcams, adult search, adult toys, webcam directory, camera, adult pictures, adult galleries, porn stuff, free pornography
http://xfdeoglss.justfree.com</description>
		<content:encoded><![CDATA[<p>Free Porn Search, Porn Search Engine, Adult Search, Free Galleries, Free Porn Videos, Adult Directory, Erotica Search<br />
free porn search, porn search engine, adult search, free galleries, free porn videos, adult directory, erotica search, adult, find porn, milf, engine, cams, webcams, adult search, adult toys, webcam directory, camera, adult pictures, adult galleries, porn stuff, free pornography<br />
<a href="http://xfdeoglss.justfree.com" rel="nofollow">http://xfdeoglss.justfree.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: datapig</title>
		<link>http://datapigtechnologies.com/blog/index.php/old-comments-and-new-tooltips-in-excel/comment-page-1/#comment-2116</link>
		<dc:creator>datapig</dc:creator>
		<pubDate>Tue, 22 Sep 2009 08:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=822#comment-2116</guid>
		<description>Tom:  Thanks for this.  This is pretty cool.</description>
		<content:encoded><![CDATA[<p>Tom:  Thanks for this.  This is pretty cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Format Excel Comment Boxes using VBA Macros &#124; Pointy Haired Dilbert: Charting &#38; Excel Tips - Chandoo.org</title>
		<link>http://datapigtechnologies.com/blog/index.php/old-comments-and-new-tooltips-in-excel/comment-page-1/#comment-2005</link>
		<dc:creator>Format Excel Comment Boxes using VBA Macros &#124; Pointy Haired Dilbert: Charting &#38; Excel Tips - Chandoo.org</dc:creator>
		<pubDate>Fri, 11 Sep 2009 09:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=822#comment-2005</guid>
		<description>[...] Use Data Validation Messages instead of Comment Boxes [...]</description>
		<content:encoded><![CDATA[<p>[...] Use Data Validation Messages instead of Comment Boxes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://datapigtechnologies.com/blog/index.php/old-comments-and-new-tooltips-in-excel/comment-page-1/#comment-1987</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 08 Sep 2009 09:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=822#comment-1987</guid>
		<description>Dear Bacon,
 
First of all, I&#039;m a great fan of your website and add-ins. Great that via your website the knowledge of the (advanced) excel-users rises which each post. :))
 
Based on your post i&#039;ve went looking for some appealing visuals with the comment boxes. The standard commentbox has&#039;nt changed in 15 years......

Based on several post on blogs (see credentials) i&#039;ve made a small VBA-script that replaces all the boring looking comment boxed on a sheet to something I find personally more appealing. 
 
--- C0DE----
Sub Comments_Tom()

Dim MyComments As Comment
Dim LArea As Long
For Each MyComments In ActiveSheet.Comments
With MyComments
.Shape.AutoShapeType = msoShapeRoundedRectangle
.Shape.Fill.ForeColor.RGB = RGB(34, 48, 108)
.Shape.Fill.Visible = msoTrue
.Shape.TextFrame.Characters.Font.Name = &quot;Tahoma&quot;
.Shape.TextFrame.Characters.Font.Size = 8
.Shape.TextFrame.Characters.Font.ColorIndex = 2
.Shape.Line.ForeColor.RGB = RGB(0, 0, 0)
.Shape.Line.BackColor.RGB = RGB(255, 255, 255)
.Shape.Fill.Visible = msoTrue
.Shape.Fill.ForeColor.RGB = RGB(58, 82, 184)
.Shape.Fill.OneColorGradient msoGradientDiagonalUp, 1, 0.23
End With
Next  &#039;comment
End Sub
 
Credentials
www.datapigtechnologies.com
www.contextures.com\xlcomments03.html
 

Yours sincerly and keep up those good posts/blogs,
Tom</description>
		<content:encoded><![CDATA[<p>Dear Bacon,</p>
<p>First of all, I&#8217;m a great fan of your website and add-ins. Great that via your website the knowledge of the (advanced) excel-users rises which each post. <img src='http://datapigtechnologies.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>Based on your post i&#8217;ve went looking for some appealing visuals with the comment boxes. The standard commentbox has&#8217;nt changed in 15 years&#8230;&#8230;</p>
<p>Based on several post on blogs (see credentials) i&#8217;ve made a small VBA-script that replaces all the boring looking comment boxed on a sheet to something I find personally more appealing. </p>
<p>&#8212; C0DE&#8212;-<br />
Sub Comments_Tom()</p>
<p>Dim MyComments As Comment<br />
Dim LArea As Long<br />
For Each MyComments In ActiveSheet.Comments<br />
With MyComments<br />
.Shape.AutoShapeType = msoShapeRoundedRectangle<br />
.Shape.Fill.ForeColor.RGB = RGB(34, 48, 108)<br />
.Shape.Fill.Visible = msoTrue<br />
.Shape.TextFrame.Characters.Font.Name = &#8220;Tahoma&#8221;<br />
.Shape.TextFrame.Characters.Font.Size = 8<br />
.Shape.TextFrame.Characters.Font.ColorIndex = 2<br />
.Shape.Line.ForeColor.RGB = RGB(0, 0, 0)<br />
.Shape.Line.BackColor.RGB = RGB(255, 255, 255)<br />
.Shape.Fill.Visible = msoTrue<br />
.Shape.Fill.ForeColor.RGB = RGB(58, 82, 184)<br />
.Shape.Fill.OneColorGradient msoGradientDiagonalUp, 1, 0.23<br />
End With<br />
Next  &#8216;comment<br />
End Sub</p>
<p>Credentials<br />
<a href="http://www.datapigtechnologies.com" rel="nofollow">http://www.datapigtechnologies.com</a><br />
<a href="http://www.contextures.com" rel="nofollow">http://www.contextures.com</a>\xlcomments03.html</p>
<p>Yours sincerly and keep up those good posts/blogs,<br />
Tom</p>
]]></content:encoded>
	</item>
</channel>
</rss>

