<?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: Classes: Other Events</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Tue, 07 Feb 2012 23:32:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Bartek</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/#comment-2604</link>
		<dc:creator>Bartek</dc:creator>
		<pubDate>Fri, 19 Nov 2004 10:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=644#comment-2604</guid>
		<description>&lt;p&gt;Dick,&lt;br&gt;
Thanks for your prompt reply. This is exactly what I was looking for HOWEVER.&lt;br&gt;
MS Query (in my case) says that query can not be represented graphically and that parameters are not available.&lt;br&gt;
I tried to include my SQL in a VB however it always return error at oQt.Refresh&lt;br&gt;
Thanks Bartek&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick,<br />
Thanks for your prompt reply. This is exactly what I was looking for HOWEVER.<br />
MS Query (in my case) says that query can not be represented graphically and that parameters are not available.<br />
I tried to include my SQL in a VB however it always return error at oQt.Refresh<br />
Thanks Bartek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/#comment-2602</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Thu, 18 Nov 2004 23:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=644#comment-2602</guid>
		<description>&lt;p&gt;Bartek&lt;/p&gt;
&lt;p&gt;Have a look at parameters&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dicks-clicks.com/excel/ExternalData6.htm#Parameters&quot; rel=&quot;nofollow&quot;&gt;http://www.dicks-clicks.com/excel/ExternalData6.htm#Parameters&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Bartek</p>
<p>Have a look at parameters</p>
<p><a href="http://www.dicks-clicks.com/excel/ExternalData6.htm#Parameters" rel="nofollow">http://www.dicks-clicks.com/excel/ExternalData6.htm#Parameters</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bartek</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/#comment-2601</link>
		<dc:creator>Bartek</dc:creator>
		<pubDate>Thu, 18 Nov 2004 22:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=644#comment-2601</guid>
		<description>&lt;p&gt;Hi, having found this topic I would like to ask a question.&lt;br&gt;
Is there any possibility to change/edit existing in Excel database query from VBA?&lt;br&gt;
Data in my excel table can be updated by changing the date (dd.mm.yyyy)  in the query (SQL) however I would not like to open Microsoft Query each time I want to get new data.&lt;br&gt;
Please kindly let me know. Thanks and regards. Bartek&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi, having found this topic I would like to ask a question.<br />
Is there any possibility to change/edit existing in Excel database query from VBA?<br />
Data in my excel table can be updated by changing the date (dd.mm.yyyy)  in the query (SQL) however I would not like to open Microsoft Query each time I want to get new data.<br />
Please kindly let me know. Thanks and regards. Bartek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/#comment-1791</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Tue, 13 Jul 2004 17:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=644#comment-1791</guid>
		<description>&lt;p&gt;Ryan:  You said &quot;1 minute&quot;, I read &quot;1 second&quot; - I don&#039;t know why.  You can use the OnTime method to continually call a sub that refreshes.  You pretty much won&#039;t be able to do anything else while it&#039;s running though.&lt;/p&gt;
&lt;p&gt;Sub RefreshWQ()&lt;/p&gt;
&lt;p&gt;&#160;&#160;&#160;&#160;Sheet1.QueryTables(1).Refresh False&lt;br&gt;&#160;&#160;&#160;&#160;&lt;br&gt;&#160;&#160;&#160;&#160;&#039;Stop refreshing at 10:46 AM&lt;br&gt;&#160;&#160;&#160;&#160;If Time &lt; TimeSerial(10, 46, 0) Then&lt;br&gt;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Application.OnTime Now + TimeSerial(0, 0, 1), &quot;RefreshWQ&quot;&lt;br&gt;&#160;&#160;&#160;&#160;End If&lt;br&gt;&#160;&#160;&#160;&#160;&lt;br&gt;End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ryan:  You said &#8220;1 minute&#8221;, I read &#8220;1 second&#8221; &#8211; I don&#8217;t know why.  You can use the OnTime method to continually call a sub that refreshes.  You pretty much won&#8217;t be able to do anything else while it&#8217;s running though.</p>
<p>Sub RefreshWQ()</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;Sheet1.QueryTables(1).Refresh False<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&#8217;Stop refreshing at 10:46 AM<br />&nbsp;&nbsp;&nbsp;&nbsp;If Time &lt; TimeSerial(10, 46, 0) Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Application.OnTime Now + TimeSerial(0, 0, 1), &#8220;RefreshWQ&#8221;<br />&nbsp;&nbsp;&nbsp;&nbsp;End If<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/#comment-1790</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 13 Jul 2004 12:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=644#comment-1790</guid>
		<description>&lt;p&gt;Dick: How do I get Excel to do a Web Refresh in 1 second?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick: How do I get Excel to do a Web Refresh in 1 second?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/#comment-1789</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Wed, 07 Jul 2004 17:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=644#comment-1789</guid>
		<description>&lt;p&gt;Ryan:  I believe the best you can do is one second.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ryan:  I believe the best you can do is one second.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/06/21/classes-other-events/#comment-1788</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 07 Jul 2004 02:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=644#comment-1788</guid>
		<description>&lt;p&gt;Is it possible to do a web refresh to less than 1 minute by changing the class variable in a similar fashion?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is it possible to do a web refresh to less than 1 minute by changing the class variable in a similar fashion?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

