<?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: Target a screen resolution</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Gordon</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/#comment-42046</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Thu, 12 Nov 2009 00:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3182#comment-42046</guid>
		<description>&lt;p&gt;Excellent idea.  I run the same resolution as you, but almost all the rest of the people at our work have decent 19? screens that run 1280×1024 natively.  However, this doesn&#039;t stop many of them driving their monitors in SuperFuzz-O-Vision at 1024×768 or even [shudder] 800×600, claiming that they can &quot;see things better&quot; at those resolutions.&lt;/p&gt;
&lt;p&gt;While I&#039;m perfectly happy to develop for 1280×1024 or even 1024*768, squashing stuff down so it fits neatly on a 800×600 screen is I think, in 2009, not worth considering.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Excellent idea.  I run the same resolution as you, but almost all the rest of the people at our work have decent 19? screens that run 1280×1024 natively.  However, this doesn&#8217;t stop many of them driving their monitors in SuperFuzz-O-Vision at 1024×768 or even [shudder] 800×600, claiming that they can &#8220;see things better&#8221; at those resolutions.</p>
<p>While I&#8217;m perfectly happy to develop for 1280×1024 or even 1024*768, squashing stuff down so it fits neatly on a 800×600 screen is I think, in 2009, not worth considering.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stray__Cat</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/#comment-42004</link>
		<dc:creator>Stray__Cat</dc:creator>
		<pubDate>Sat, 07 Nov 2009 00:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3182#comment-42004</guid>
		<description>&lt;p&gt;Nice script.&lt;br&gt;
I simply assume a sensible width and work for that but this approach is cleaner.&lt;br&gt;
Thanks for sharing!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Nice script.<br />
I simply assume a sensible width and work for that but this approach is cleaner.<br />
Thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hans schraven</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/#comment-42002</link>
		<dc:creator>hans schraven</dc:creator>
		<pubDate>Fri, 06 Nov 2009 16:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3182#comment-42002</guid>
		<description>&lt;p&gt;In Word&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Private&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; UserForm_Initialize() &lt;br&gt;
&#160; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt; Application.System &lt;br&gt;
&#160; &#160; Me.Height = .VerticalResolution * 0.6 &lt;br&gt;
&#160; &#160; Me.Width = .HorizontalResolution * 0.6 &lt;br&gt;
&#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt; &lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;in Excel&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Private&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; UserForm_Initialize() &lt;br&gt;
&#160; &#160; Application.ActivateMicrosoftApp xlMicrosoftWord &#160; &#160;&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt; getobject(,&lt;span class=&quot;st0&quot;&gt;&quot;Word.Application&quot;&lt;/span&gt;).Application.System &lt;br&gt;
&#160; &#160; &#160; &#160; Me.Height = .VerticalResolution * 0.6 &lt;br&gt;
&#160; &#160; &#160; &#160; Me.Width = .HorizontalResolution * 0.6 &lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt; &lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>In Word</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Private</span> <span class="kw1">Sub</span> UserForm_Initialize() <br />
&nbsp; <span class="kw1">With</span> Application.System <br />
&nbsp; &nbsp; Me.Height = .VerticalResolution * 0.6 <br />
&nbsp; &nbsp; Me.Width = .HorizontalResolution * 0.6 <br />
&nbsp; <span class="kw1">End</span> <span class="kw1">With</span> <br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
<p>in Excel</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Private</span> <span class="kw1">Sub</span> UserForm_Initialize() <br />
&nbsp; &nbsp; Application.ActivateMicrosoftApp xlMicrosoftWord &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span class="kw1">With</span> getobject(,<span class="st0">&#8220;Word.Application&#8221;</span>).Application.System <br />
&nbsp; &nbsp; &nbsp; &nbsp; Me.Height = .VerticalResolution * 0.6 <br />
&nbsp; &nbsp; &nbsp; &nbsp; Me.Width = .HorizontalResolution * 0.6 <br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">With</span> <br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harald Staff</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/#comment-42000</link>
		<dc:creator>Harald Staff</dc:creator>
		<pubDate>Fri, 06 Nov 2009 12:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3182#comment-42000</guid>
		<description>&lt;p&gt;I don&#039;t think we have any 640 screens left in the organization. It&#039;s there nowadays more to remind me that my users may not run my creations in full screen all the time and that the work should resize so that scrolling is unneeded.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think we have any 640 screens left in the organization. It&#8217;s there nowadays more to remind me that my users may not run my creations in full screen all the time and that the work should resize so that scrolling is unneeded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Wallentin</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/#comment-41999</link>
		<dc:creator>Dennis Wallentin</dc:creator>
		<pubDate>Fri, 06 Nov 2009 10:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3182#comment-41999</guid>
		<description>&lt;p&gt;Rob - Nice approach &lt;img class=&quot;wp-smiley&quot; alt=&quot;:)&quot; src=&quot;http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif&quot;&gt; Personally I use a software shipped with the graphic card that I can easily switch resolution with.&lt;/p&gt;
&lt;p&gt;Harald - Smart solution but do You still use 640*800? For me it&#039;s outdated and gone.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br&gt;
Dennis&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Rob &#8211; Nice approach <img class="wp-smiley" alt=":)" src="http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif"/> Personally I use a software shipped with the graphic card that I can easily switch resolution with.</p>
<p>Harald &#8211; Smart solution but do You still use 640*800? For me it&#8217;s outdated and gone.</p>
<p>Kind regards,<br />
Dennis</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harald Staff</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/11/05/target-a-screen-resolution/#comment-41992</link>
		<dc:creator>Harald Staff</dc:creator>
		<pubDate>Thu, 05 Nov 2009 16:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3182#comment-41992</guid>
		<description>&lt;p&gt;I use a more low-tech approach.&lt;br&gt;
I&#039;ve created a besktop background picture with rectangles superimposed. 640*480, 800*600, 1024*768. When creating spreadsheets, forms, webpages, whatever, I resize the app over the rectangles from time to time to see what it looks like. It has been very useful.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I use a more low-tech approach.<br />
I&#8217;ve created a besktop background picture with rectangles superimposed. 640*480, 800*600, 1024*768. When creating spreadsheets, forms, webpages, whatever, I resize the app over the rectangles from time to time to see what it looks like. It has been very useful.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

