<?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: Trilogy-meter Data Graphics Part III</title>
	<atom:link href="http://www.visguy.com/2009/02/25/trilogy-meter-data-graphics-part-iii/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.visguy.com/2009/02/25/trilogy-meter-data-graphics-part-iii/</link>
	<description>Shapes, Stencils, Drawings Templates, Tutorials, Tips &#38; Developer Info for Microsoft Visio</description>
	<lastBuildDate>Fri, 10 Feb 2012 17:20:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Visio Guy &#187; Turn It Up With the NW Airlines Volume Gauge!</title>
		<link>http://www.visguy.com/2009/02/25/trilogy-meter-data-graphics-part-iii/comment-page-1/#comment-22356</link>
		<dc:creator>Visio Guy &#187; Turn It Up With the NW Airlines Volume Gauge!</dc:creator>
		<pubDate>Fri, 15 May 2009 14:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/?p=2086#comment-22356</guid>
		<description>[...] Trilogy-meter Data Graphics Part III [...]</description>
		<content:encoded><![CDATA[<p>[...] Trilogy-meter Data Graphics Part III [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Helmers</title>
		<link>http://www.visguy.com/2009/02/25/trilogy-meter-data-graphics-part-iii/comment-page-1/#comment-21943</link>
		<dc:creator>Scott Helmers</dc:creator>
		<pubDate>Fri, 06 Mar 2009 03:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/?p=2086#comment-21943</guid>
		<description>Good point about the fields not being there yet, hadn&#039;t thought about that... easy enough to add them in a &quot;for each shp&quot; loop...

Have a safe trip home (I arrived back in Boston a couple of hours ago).

Scott</description>
		<content:encoded><![CDATA[<p>Good point about the fields not being there yet, hadn&#8217;t thought about that&#8230; easy enough to add them in a &#8220;for each shp&#8221; loop&#8230;</p>
<p>Have a safe trip home (I arrived back in Boston a couple of hours ago).</p>
<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visio Guy</title>
		<link>http://www.visguy.com/2009/02/25/trilogy-meter-data-graphics-part-iii/comment-page-1/#comment-21939</link>
		<dc:creator>Visio Guy</dc:creator>
		<pubDate>Thu, 05 Mar 2009 15:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/?p=2086#comment-21939</guid>
		<description>See Scott, the only way to get any comments is to write something stupid (hahahaha)

I had a feeling that there was a smarter way to do this, but I was packing for Seattle while writing these three articles...

But it seems to me that applying the data graphics before the auto linking will cause a problem, because the shapes don&#039;t have all of the fields yet. The auto-linking actually adds the fields, so that they can then accept the data graphic properly. I&#039;ll have to re-check this.

Thanks for the tips, and anybody who submits code automatically gets an extra FIVE POINTS!</description>
		<content:encoded><![CDATA[<p>See Scott, the only way to get any comments is to write something stupid (hahahaha)</p>
<p>I had a feeling that there was a smarter way to do this, but I was packing for Seattle while writing these three articles&#8230;</p>
<p>But it seems to me that applying the data graphics before the auto linking will cause a problem, because the shapes don&#8217;t have all of the fields yet. The auto-linking actually adds the fields, so that they can then accept the data graphic properly. I&#8217;ll have to re-check this.</p>
<p>Thanks for the tips, and anybody who submits code automatically gets an extra FIVE POINTS!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Helmers</title>
		<link>http://www.visguy.com/2009/02/25/trilogy-meter-data-graphics-part-iii/comment-page-1/#comment-21936</link>
		<dc:creator>Scott Helmers</dc:creator>
		<pubDate>Thu, 05 Mar 2009 07:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/?p=2086#comment-21936</guid>
		<description>Chris,

Two suggestions:

1) As long as you have to select all shapes and then apply the correct data graphic after doing the data linking -- why not do it first and eliminate the application of the wrong one? To do so: a) Select All, b) apply the data graphic (nothing interesting will happen yet because the shapes don&#039;t have data, but hang on for a moment), c) do the autolinking. The result: the data graphics will appear as soon as data linking is finished.

2) Even better, add two lines of code to your VBA routine to preselect the data graphic:
    ActiveWindow.SelectAll
    ActiveWindow.Selection.DataGraphic = _ 
       ActiveDocument.Masters(&quot;TrilogyDataGraphic&quot;)
Then everything will be right when you do the autolinking. (NOTE: replace &quot;TrilogyDataGraphic&quot; with the actual name of your data graphic master.) 

Of course, with another 6-8 lines of code you can even do the data linking automatically... maybe that should be the long anticipated fourth part of the trilogy!?!?</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>Two suggestions:</p>
<p>1) As long as you have to select all shapes and then apply the correct data graphic after doing the data linking &#8212; why not do it first and eliminate the application of the wrong one? To do so: a) Select All, b) apply the data graphic (nothing interesting will happen yet because the shapes don&#8217;t have data, but hang on for a moment), c) do the autolinking. The result: the data graphics will appear as soon as data linking is finished.</p>
<p>2) Even better, add two lines of code to your VBA routine to preselect the data graphic:<br />
    ActiveWindow.SelectAll<br />
    ActiveWindow.Selection.DataGraphic = _<br />
       ActiveDocument.Masters(&#8220;TrilogyDataGraphic&#8221;)<br />
Then everything will be right when you do the autolinking. (NOTE: replace &#8220;TrilogyDataGraphic&#8221; with the actual name of your data graphic master.) </p>
<p>Of course, with another 6-8 lines of code you can even do the data linking automatically&#8230; maybe that should be the long anticipated fourth part of the trilogy!?!?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabien</title>
		<link>http://www.visguy.com/2009/02/25/trilogy-meter-data-graphics-part-iii/comment-page-1/#comment-21930</link>
		<dc:creator>Fabien</dc:creator>
		<pubDate>Tue, 03 Mar 2009 10:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/?p=2086#comment-21930</guid>
		<description>Thanks for all the tips!</description>
		<content:encoded><![CDATA[<p>Thanks for all the tips!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 7/20 queries in 0.007 seconds using disk: basic
Object Caching 388/407 objects using disk: basic
Content Delivery Network via N/A

Served from: www.visguy.com @ 2012-02-12 01:18:00 -->
