<?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: MS Access: checking network paths without freezing your application</title>
	<atom:link href="http://blog.nkadesign.com/2008/ms-access-checking-network-paths-without-freezing-your-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nkadesign.com/2008/ms-access-checking-network-paths-without-freezing-your-application/</link>
	<description>Just another programming weblog</description>
	<lastBuildDate>Thu, 04 Mar 2010 04:48:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Renaud</title>
		<link>http://blog.nkadesign.com/2008/ms-access-checking-network-paths-without-freezing-your-application/comment-page-1/#comment-8985</link>
		<dc:creator>Renaud</dc:creator>
		<pubDate>Wed, 13 Aug 2008 02:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nkadesign.com/?p=93#comment-8985</guid>
		<description>&lt;p&gt;Thank you Karel :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you Karel :-)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: karel van der kaaden</title>
		<link>http://blog.nkadesign.com/2008/ms-access-checking-network-paths-without-freezing-your-application/comment-page-1/#comment-8982</link>
		<dc:creator>karel van der kaaden</dc:creator>
		<pubDate>Tue, 12 Aug 2008 12:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nkadesign.com/?p=93#comment-8982</guid>
		<description>&lt;p&gt;really usefull !!!&lt;/p&gt;

&lt;p&gt;I deal a long time with the problem of freezing the application when using Dir() or FileSystem object.&lt;/p&gt;

&lt;p&gt;Thanks.&lt;/p&gt;

&lt;p&gt;from the netherlands&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>really usefull !!!</p>

<p>I deal a long time with the problem of freezing the application when using Dir() or FileSystem object.</p>

<p>Thanks.</p>

<p>from the netherlands</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Renaud</title>
		<link>http://blog.nkadesign.com/2008/ms-access-checking-network-paths-without-freezing-your-application/comment-page-1/#comment-8765</link>
		<dc:creator>Renaud</dc:creator>
		<pubDate>Sun, 29 Jun 2008 09:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nkadesign.com/?p=93#comment-8765</guid>
		<description>&lt;p&gt;Hi Edwin,
Thanks for the comment.
One way to make a non-freezing database check could be to create a small database from code and launch it.
That small database would simply attempt to reach the  the main server.
Once successful, it would write a flag in its &#039;Result&#039; table.&lt;/p&gt;

&lt;p&gt;The main application could simply check regularly the external &#039;Result&#039; table and display a permanent progress bar until a result is returned.&lt;/p&gt;

&lt;p&gt;I&#039;ll think about this and try to implement it some time.
Don&#039;t have the time just now though ;-(&lt;/p&gt;

&lt;p&gt;Another, more simple solution would require a an external program or Access database already containing the necessary code and shipped with the application.
Until now I&#039;ve always tried to make my utilities from the principle that they should be created from within my main application, but it may be smarter to just create these ad-hoc tools separately and ship them with the app.&lt;/p&gt;

&lt;p&gt;Using external programs is actually an easy way to deal with blocking code.
For more general asynchronous coding it&#039;s actually more useful to use .Net or addins.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Edwin,
Thanks for the comment.
One way to make a non-freezing database check could be to create a small database from code and launch it.
That small database would simply attempt to reach the  the main server.
Once successful, it would write a flag in its &#8216;Result&#8217; table.</p>

<p>The main application could simply check regularly the external &#8216;Result&#8217; table and display a permanent progress bar until a result is returned.</p>

<p>I&#8217;ll think about this and try to implement it some time.
Don&#8217;t have the time just now though ;-(</p>

<p>Another, more simple solution would require a an external program or Access database already containing the necessary code and shipped with the application.
Until now I&#8217;ve always tried to make my utilities from the principle that they should be created from within my main application, but it may be smarter to just create these ad-hoc tools separately and ship them with the app.</p>

<p>Using external programs is actually an easy way to deal with blocking code.
For more general asynchronous coding it&#8217;s actually more useful to use .Net or addins.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Edwin Blancovitch</title>
		<link>http://blog.nkadesign.com/2008/ms-access-checking-network-paths-without-freezing-your-application/comment-page-1/#comment-8738</link>
		<dc:creator>Edwin Blancovitch</dc:creator>
		<pubDate>Wed, 25 Jun 2008 03:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nkadesign.com/?p=93#comment-8738</guid>
		<description>&lt;p&gt;Great !!&lt;/p&gt;

&lt;p&gt;I have been looking for answers like this and never found one really this good.&lt;/p&gt;

&lt;p&gt;This forces me to ask another question. . .&lt;/p&gt;

&lt;p&gt;Can you create code like this to see if a SQL server is found, and to see if the database is also found, or maybe retrieve a server list and database list from SQL.&lt;/p&gt;

&lt;p&gt;That will be really great to have. . .&lt;/p&gt;

&lt;p&gt;Imagine the code can say, looking, maybe even with a progress bar, and not hang the application.&lt;/p&gt;

&lt;p&gt;The access somtimes says not responding, misleading users, this wasy it will be more proffesional. . .&lt;/p&gt;

&lt;p&gt;Good Idea, inst it?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great !!</p>

<p>I have been looking for answers like this and never found one really this good.</p>

<p>This forces me to ask another question. . .</p>

<p>Can you create code like this to see if a SQL server is found, and to see if the database is also found, or maybe retrieve a server list and database list from SQL.</p>

<p>That will be really great to have. . .</p>

<p>Imagine the code can say, looking, maybe even with a progress bar, and not hang the application.</p>

<p>The access somtimes says not responding, misleading users, this wasy it will be more proffesional. . .</p>

<p>Good Idea, inst it?</p>]]></content:encoded>
	</item>
</channel>
</rss>
