<?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: Visio and Xml Conference Resources</title>
	<atom:link href="http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/</link>
	<description>Smart graphics for visual people. Visio Guy offers Microsoft Visio shapes, stencils, templates, code,  power user tips and programming advice and ShapeSheet examples for creating Visio SmartShapes.</description>
	<lastBuildDate>Mon, 15 Mar 2010 14:13:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Visio Guy</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-23055</link>
		<dc:creator>Visio Guy</dc:creator>
		<pubDate>Fri, 14 Aug 2009 09:36:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-23055</guid>
		<description>Update: we&#039;re still looking for it... </description>
		<content:encoded><![CDATA[<p>Update: we&#8217;re still looking for it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visio Guy</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-23045</link>
		<dc:creator>Visio Guy</dc:creator>
		<pubDate>Thu, 13 Aug 2009 09:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-23045</guid>
		<description>Hi Lucas,

No idea what&#039;s wrong. I&#039;ve asked Microsoft if they know what the problem is. I don&#039;t know if I have the audio, and I certainly don&#039;t want to host a 144MB file on my account! ;)

I might be able to dig up the PowerPoint presentation, though...</description>
		<content:encoded><![CDATA[<p>Hi Lucas,</p>
<p>No idea what&#8217;s wrong. I&#8217;ve asked Microsoft if they know what the problem is. I don&#8217;t know if I have the audio, and I certainly don&#8217;t want to host a 144MB file on my account! <img src='http://www.visguy.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I might be able to dig up the PowerPoint presentation, though&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-23042</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Wed, 12 Aug 2009 15:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-23042</guid>
		<description>Hey there!

The links are broken again. Could you somehow fix it? Or tell me where I can download the slides?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hey there!</p>
<p>The links are broken again. Could you somehow fix it? Or tell me where I can download the slides?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benefits of Video Conferencing</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-21633</link>
		<dc:creator>Benefits of Video Conferencing</dc:creator>
		<pubDate>Wed, 21 Jan 2009 06:45:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-21633</guid>
		<description>Spending money on investing video conferencing system has saved me time and money by optimizing my business through video conferencing.</description>
		<content:encoded><![CDATA[<p>Spending money on investing video conferencing system has saved me time and money by optimizing my business through video conferencing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visio Guy</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-18828</link>
		<dc:creator>Visio Guy</dc:creator>
		<pubDate>Thu, 19 Jun 2008 12:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-18828</guid>
		<description>Hi Martin,

Have tried flipping/unflipping the whole drawing (page)?

This little sub might do the trick a bit faster for you.

Since those unrouted connectors are in the lower-left corner of your page, this code first draws a really long diagonal line from ( -pagewidth, -pageheight ) to ( 2 * pagewidth, 2* pageheight ) so that all objects on the page will be symmetrically encompassed by &#039;select all&#039;. That way, when we do flip-x twice, the objects on the page won&#039;t move.

At any rate, this should work faster than flipping each individual shape...

Sub FlipXmlPage()

  &#039;// Get the page and the size of the page:
  Dim pg As Visio.Page
  Dim pw As Double, ph As Double
  
  Set pg = Visio.ActivePage
  pw = pg.PageSheet.Cells(&quot;Width&quot;).ResultIU
  ph = pg.PageSheet.Cells(&quot;Height&quot;).ResultIU
  
  &#039;// Draw a big diagonal line to make all objects
  &#039;// on the page symmetrical:
  Dim shpLine As Visio.Shape
  Set shpLine = pg.DrawLine(-pw, -ph, 2 * pw, 2 * ph)

  &#039;// Flip everything on the page
  Dim sel As Visio.Selection
  Set sel = Visio.ActivePage.CreateSelection(Visio.VisSelectionTypes.visSelTypeAll)
  sel.Flip (Visio.VisFlipDirection.visFlipHorizontal)
  sel.Flip (Visio.VisFlipDirection.visFlipHorizontal)
  
  &#039;// Get rid of the line:
  shpLine.Delete
  
End Sub</description>
		<content:encoded><![CDATA[<p>Hi Martin,</p>
<p>Have tried flipping/unflipping the whole drawing (page)?</p>
<p>This little sub might do the trick a bit faster for you.</p>
<p>Since those unrouted connectors are in the lower-left corner of your page, this code first draws a really long diagonal line from ( -pagewidth, -pageheight ) to ( 2 * pagewidth, 2* pageheight ) so that all objects on the page will be symmetrically encompassed by &#8217;select all&#8217;. That way, when we do flip-x twice, the objects on the page won&#8217;t move.</p>
<p>At any rate, this should work faster than flipping each individual shape&#8230;</p>
<p>Sub FlipXmlPage()</p>
<p>  &#8216;// Get the page and the size of the page:<br />
  Dim pg As Visio.Page<br />
  Dim pw As Double, ph As Double</p>
<p>  Set pg = Visio.ActivePage<br />
  pw = pg.PageSheet.Cells(&#8220;Width&#8221;).ResultIU<br />
  ph = pg.PageSheet.Cells(&#8220;Height&#8221;).ResultIU</p>
<p>  &#8216;// Draw a big diagonal line to make all objects<br />
  &#8216;// on the page symmetrical:<br />
  Dim shpLine As Visio.Shape<br />
  Set shpLine = pg.DrawLine(-pw, -ph, 2 * pw, 2 * ph)</p>
<p>  &#8216;// Flip everything on the page<br />
  Dim sel As Visio.Selection<br />
  Set sel = Visio.ActivePage.CreateSelection(Visio.VisSelectionTypes.visSelTypeAll)<br />
  sel.Flip (Visio.VisFlipDirection.visFlipHorizontal)<br />
  sel.Flip (Visio.VisFlipDirection.visFlipHorizontal)</p>
<p>  &#8216;// Get rid of the line:<br />
  shpLine.Delete</p>
<p>End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Thiele</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-18789</link>
		<dc:creator>Martin Thiele</dc:creator>
		<pubDate>Wed, 18 Jun 2008 08:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-18789</guid>
		<description>Thanks for your quick reply! For the moment we&#039;ve solved it by opening the diagram and flipping/unflipping each shape. This way the layout doesn&#039;t change but it&#039;s a fairly slow. Hope that we will find another solution in the near future.</description>
		<content:encoded><![CDATA[<p>Thanks for your quick reply! For the moment we&#8217;ve solved it by opening the diagram and flipping/unflipping each shape. This way the layout doesn&#8217;t change but it&#8217;s a fairly slow. Hope that we will find another solution in the near future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visio Guy</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-18742</link>
		<dc:creator>Visio Guy</dc:creator>
		<pubDate>Mon, 16 Jun 2008 09:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-18742</guid>
		<description>I found this post on Mai-Lan&#039;s blog:

http://blogs.msdn.com/mailant/archive/2004/10/26/248369.aspx

It&#039;s from 2004, so maybe they&#039;ve changed something, but it recommends calling Layout on Open. Duh. Still not a solution, but maybe an answer...</description>
		<content:encoded><![CDATA[<p>I found this post on Mai-Lan&#8217;s blog:</p>
<p><a  href="http://blogs.msdn.com/mailant/archive/2004/10/26/248369.aspx" rel="nofollow">http://blogs.msdn.com/mailant/archive/2004/10/26/248369.aspx</a></p>
<p>It&#8217;s from 2004, so maybe they&#8217;ve changed something, but it recommends calling Layout on Open. Duh. Still not a solution, but maybe an answer&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visio Guy</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-18740</link>
		<dc:creator>Visio Guy</dc:creator>
		<pubDate>Mon, 16 Jun 2008 09:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-18740</guid>
		<description>Hi Martin,

I actually had this problem when I gave the presentation a few years ago, and still haven&#039;t had the time to figure it out.

I&#039;ll ask around, see if any of the other Visio Geeks have figured it out. Kind of kills the whole &quot;server-side document generation&quot; thing, doesn&#039;t it?</description>
		<content:encoded><![CDATA[<p>Hi Martin,</p>
<p>I actually had this problem when I gave the presentation a few years ago, and still haven&#8217;t had the time to figure it out.</p>
<p>I&#8217;ll ask around, see if any of the other Visio Geeks have figured it out. Kind of kills the whole &#8220;server-side document generation&#8221; thing, doesn&#8217;t it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Thiele</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-18735</link>
		<dc:creator>Martin Thiele</dc:creator>
		<pubDate>Mon, 16 Jun 2008 07:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-18735</guid>
		<description>Hello,

I&#039;m trying to create a XML-drawing and everything seems to work fine, only the connectors are not displayed until you move one or more shapes. This is the same problem that Chris Maloney encounters and I was wondering if you already know of a solution. I do not use automation (XML-code is created from within a SQL Server DTS-package).

Thanks,
Martin Thiele</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;m trying to create a XML-drawing and everything seems to work fine, only the connectors are not displayed until you move one or more shapes. This is the same problem that Chris Maloney encounters and I was wondering if you already know of a solution. I do not use automation (XML-code is created from within a SQL Server DTS-package).</p>
<p>Thanks,<br />
Martin Thiele</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visio Guy &#187; Blog Archive &#187; Visio Conference 2008 - Awards, Notes, Epilogue</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-16275</link>
		<dc:creator>Visio Guy &#187; Blog Archive &#187; Visio Conference 2008 - Awards, Notes, Epilogue</dc:creator>
		<pubDate>Fri, 08 Feb 2008 23:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-16275</guid>
		<description>[...] from the last Visio conference available for download, including the Visio Guy&#039;s Visio-XML show (see: Visio and Xml Conference Resources) So even without the new stuff, there&#039;s still lots of goodies from the last [...]</description>
		<content:encoded><![CDATA[<p>[...] from the last Visio conference available for download, including the Visio Guy&#8217;s Visio-XML show (see: Visio and Xml Conference Resources) So even without the new stuff, there&#8217;s still lots of goodies from the last [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Maloney</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-7783</link>
		<dc:creator>Chris Maloney</dc:creator>
		<pubDate>Fri, 08 Jun 2007 00:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-7783</guid>
		<description>Chris,

I have built (and modified ... converted to c#,etc) your sample code that uses a XML drawing and adds shapes and connectors to create a drawing using XML... very cool... only example of this I have seen anywhere... Thanks!  I have the same issue you left in the example... Visio does not &quot;layout&quot; the connectors until I move a shape or use a &quot;layout command&quot;.   Did you find a way to get Visio to layout the connectors when it opens the drawing?

thanks,
Chris M</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>I have built (and modified &#8230; converted to c#,etc) your sample code that uses a XML drawing and adds shapes and connectors to create a drawing using XML&#8230; very cool&#8230; only example of this I have seen anywhere&#8230; Thanks!  I have the same issue you left in the example&#8230; Visio does not &#8220;layout&#8221; the connectors until I move a shape or use a &#8220;layout command&#8221;.   Did you find a way to get Visio to layout the connectors when it opens the drawing?</p>
<p>thanks,<br />
Chris M</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visio Guy</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-80</link>
		<dc:creator>Visio Guy</dc:creator>
		<pubDate>Fri, 01 Dec 2006 20:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-80</guid>
		<description>Thank MattJ,

No idea what went wrong, but it&#039;s fixed now!</description>
		<content:encoded><![CDATA[<p>Thank MattJ,</p>
<p>No idea what went wrong, but it&#8217;s fixed now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MattJ</title>
		<link>http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/comment-page-1/#comment-79</link>
		<dc:creator>MattJ</dc:creator>
		<pubDate>Fri, 01 Dec 2006 20:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.visguy.com/2006/11/30/visio-and-xml-conference-resources/#comment-79</guid>
		<description>You&#039;re a/v download link seems to be broken.  Just thought I&#039;d let you know.</description>
		<content:encoded><![CDATA[<p>You&#8217;re a/v download link seems to be broken.  Just thought I&#8217;d let you know.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
