<?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: Outlook for the Blind Redux</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/06/14/outlook-for-the-blind-redux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/06/14/outlook-for-the-blind-redux/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:42:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Rob van Gelder</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/06/14/outlook-for-the-blind-redux/#comment-14238</link>
		<dc:creator>Rob van Gelder</dc:creator>
		<pubDate>Wed, 22 Jun 2005 05:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1167#comment-14238</guid>
		<description>&lt;p&gt;Wouldn&#039;t it be nice if the reader could be signalled to ignore updates for a period of time?&lt;/p&gt;
&lt;p&gt;eg.&lt;br&gt;
ScreenReader.ProcessScreenUpdates = False&lt;br&gt;
dtm = GetSelectedOutlookDate()&lt;br&gt;
ScreenReader.ProcessScreenUpdates = True&lt;/p&gt;
&lt;p&gt;Surely this automation problem would affect more apps than just Outlook?&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t it be nice if the reader could be signalled to ignore updates for a period of time?</p>
<p>eg.<br />
ScreenReader.ProcessScreenUpdates = False<br />
dtm = GetSelectedOutlookDate()<br />
ScreenReader.ProcessScreenUpdates = True</p>
<p>Surely this automation problem would affect more apps than just Outlook?</p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Dahlgren</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/06/14/outlook-for-the-blind-redux/#comment-14146</link>
		<dc:creator>Jack Dahlgren</dc:creator>
		<pubDate>Thu, 16 Jun 2005 07:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1167#comment-14146</guid>
		<description>&lt;p&gt;Dick,&lt;/p&gt;
&lt;p&gt;MS Project doesn&#039;t support this property either. If I really don&#039;t want it to flicker I set visible = false until I&#039;m done or switch the active project to one which is blank.&lt;/p&gt;
&lt;p&gt;-Jack&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick,</p>
<p>MS Project doesn&#8217;t support this property either. If I really don&#8217;t want it to flicker I set visible = false until I&#8217;m done or switch the active project to one which is blank.</p>
<p>-Jack</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TJM</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/06/14/outlook-for-the-blind-redux/#comment-13929</link>
		<dc:creator>TJM</dc:creator>
		<pubDate>Wed, 15 Jun 2005 08:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1167#comment-13929</guid>
		<description>&lt;p&gt;I don&#039;t know anything about the programmability of screen reader programs but would an alternative approach be to try and turn that on / off in preference to trying to turn Outlook screen refresh on / off?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know anything about the programmability of screen reader programs but would an alternative approach be to try and turn that on / off in preference to trying to turn Outlook screen refresh on / off?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Gelder</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/06/14/outlook-for-the-blind-redux/#comment-13928</link>
		<dc:creator>Rob van Gelder</dc:creator>
		<pubDate>Wed, 15 Jun 2005 07:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1167#comment-13928</guid>
		<description>&lt;p&gt;Dick,&lt;/p&gt;
&lt;p&gt;The closest I can get is as follows:&lt;/p&gt;
&lt;p&gt;It still shows the appointment window, but appears not to draw the contents of the window?&lt;/p&gt;
&lt;p&gt;Private Declare Function LockWindowUpdate Lib &quot;user32? (ByVal hwndLock As Long) As Long&lt;br&gt;
Private Declare Function GetDesktopWindow Lib &quot;user32? () As Long&lt;/p&gt;
&lt;p&gt;Sub GetCurrentDay()&lt;br&gt;
    Dim dtSelected As Date&lt;br&gt;
    Dim i As Long&lt;/p&gt;
&lt;p&gt;    If Application.ActiveExplorer.CurrentFolder.DefaultItemType = olAppointmentItem Then&lt;br&gt;
        LockWindowUpdate (GetDesktopWindow)&lt;br&gt;
        Application.ActiveExplorer.CommandBars.FindControl(, 1106).Execute&lt;br&gt;
        For i = 1 To 10000: DoEvents: Next i&lt;br&gt;
        dtSelected = Application.ActiveInspector.CurrentItem.Start&lt;br&gt;
        Application.ActiveInspector.Close olDiscard&lt;br&gt;
        LockWindowUpdate (0)&lt;br&gt;
        Debug.Print Format(dtSelected, &quot;mm/dd/yyyy hh:mm&quot;)&lt;br&gt;
    End If&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick,</p>
<p>The closest I can get is as follows:</p>
<p>It still shows the appointment window, but appears not to draw the contents of the window?</p>
<p>Private Declare Function LockWindowUpdate Lib &#8220;user32? (ByVal hwndLock As Long) As Long<br />
Private Declare Function GetDesktopWindow Lib &#8220;user32? () As Long</p>
<p>Sub GetCurrentDay()<br />
    Dim dtSelected As Date<br />
    Dim i As Long</p>
<p>    If Application.ActiveExplorer.CurrentFolder.DefaultItemType = olAppointmentItem Then<br />
        LockWindowUpdate (GetDesktopWindow)<br />
        Application.ActiveExplorer.CommandBars.FindControl(, 1106).Execute<br />
        For i = 1 To 10000: DoEvents: Next i<br />
        dtSelected = Application.ActiveInspector.CurrentItem.Start<br />
        Application.ActiveInspector.Close olDiscard<br />
        LockWindowUpdate (0)<br />
        Debug.Print Format(dtSelected, &#8220;mm/dd/yyyy hh:mm&#8221;)<br />
    End If</p>
<p>End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: excelthoughts</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/06/14/outlook-for-the-blind-redux/#comment-13926</link>
		<dc:creator>excelthoughts</dc:creator>
		<pubDate>Wed, 15 Jun 2005 04:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1167#comment-13926</guid>
		<description>&lt;p&gt;Sue Mosher seems to have all the Outlook answers. Unfortunately the answer&lt;br&gt;
is that you can&#039;t do it.&lt;br&gt;
&lt;a href=&quot;http://www.outlookcode.com/threads.aspx?forumid=2&amp;messageid=9292&quot; rel=&quot;nofollow&quot;&gt;http://www.outlookcode.com/threads.aspx?forumid=2&amp;messageid=9292&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;br&gt;
Andrew&lt;br&gt;
excelthoughts.com&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Sue Mosher seems to have all the Outlook answers. Unfortunately the answer<br />
is that you can&#8217;t do it.<br />
<a href="http://www.outlookcode.com/threads.aspx?forumid=2&amp;messageid=9292" rel="nofollow">http://www.outlookcode.com/threads.aspx?forumid=2&#038;messageid=9292</a></p>
<p>Regards<br />
Andrew<br />
excelthoughts.com</p>
]]></content:encoded>
	</item>
</channel>
</rss>

