<?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: Adjust Date/Time To Next Business Day</title>
	<atom:link href="http://www.eknori.de/2007-06-10/adjust-datetime-to-next-business-day/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eknori.de/2007-06-10/adjust-datetime-to-next-business-day/</link>
	<description>the weird world of eknori</description>
	<lastBuildDate>Mon, 23 Jan 2012 09:01:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: eknori</title>
		<link>http://www.eknori.de/2007-06-10/adjust-datetime-to-next-business-day/comment-page-1/#comment-184</link>
		<dc:creator>eknori</dc:creator>
		<pubDate>Tue, 19 Jun 2007 04:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.eknori.de/archives/428#comment-184</guid>
		<description>Thanks for investigating and updating the code ...</description>
		<content:encoded><![CDATA[<p>Thanks for investigating and updating the code &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Burgess</title>
		<link>http://www.eknori.de/2007-06-10/adjust-datetime-to-next-business-day/comment-page-1/#comment-183</link>
		<dc:creator>Sean Burgess</dc:creator>
		<pubDate>Mon, 18 Jun 2007 14:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.eknori.de/archives/428#comment-183</guid>
		<description>Found the problem in my code and updated OpenNTF.  It&#039;s always the little things that get you, like checking for False when you should be checking for True.</description>
		<content:encoded><![CDATA[<p>Found the problem in my code and updated OpenNTF.  It&#8217;s always the little things that get you, like checking for False when you should be checking for True.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Burgess</title>
		<link>http://www.eknori.de/2007-06-10/adjust-datetime-to-next-business-day/comment-page-1/#comment-182</link>
		<dc:creator>Sean Burgess</dc:creator>
		<pubDate>Fri, 15 Jun 2007 18:34:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.eknori.de/archives/428#comment-182</guid>
		<description>I have used the code in production for a while, so I will have to investigate what the issue is.  Maybe I screwed something up when I was trying to comment the code.</description>
		<content:encoded><![CDATA[<p>I have used the code in production for a while, so I will have to investigate what the issue is.  Maybe I screwed something up when I was trying to comment the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eknori</title>
		<link>http://www.eknori.de/2007-06-10/adjust-datetime-to-next-business-day/comment-page-1/#comment-181</link>
		<dc:creator>eknori</dc:creator>
		<pubDate>Fri, 15 Jun 2007 15:08:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.eknori.de/archives/428#comment-181</guid>
		<description>Sean,

I have tried your class and found that it does not seem to calculate the elapsed time correctly. When I use this code for example:

	Dim elTime As New ElapsedTime( &quot;13.06.2007 10:00&quot;, &quot;14.06.2007 10:20&quot;, &quot;&quot; )
	Msgbox elTime.GetBElapsedString()

leaving the default settings for nondays and business hours untouched, the result is &quot;20 Minutes&quot; which is  ... not correct.
When I wrote my code, I did not have the time to dig too deep into your code to search for the reason, why I do not get the correct result. So I decided to write it from scratch.


Ulrich</description>
		<content:encoded><![CDATA[<p>Sean,</p>
<p>I have tried your class and found that it does not seem to calculate the elapsed time correctly. When I use this code for example:</p>
<p>	Dim elTime As New ElapsedTime( &#8220;13.06.2007 10:00&#8243;, &#8220;14.06.2007 10:20&#8243;, &#8220;&#8221; )<br />
	Msgbox elTime.GetBElapsedString()</p>
<p>leaving the default settings for nondays and business hours untouched, the result is &#8220;20 Minutes&#8221; which is  &#8230; not correct.<br />
When I wrote my code, I did not have the time to dig too deep into your code to search for the reason, why I do not get the correct result. So I decided to write it from scratch.</p>
<p>Ulrich</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Burgess</title>
		<link>http://www.eknori.de/2007-06-10/adjust-datetime-to-next-business-day/comment-page-1/#comment-180</link>
		<dc:creator>Sean Burgess</dc:creator>
		<pubDate>Fri, 15 Jun 2007 13:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.eknori.de/archives/428#comment-180</guid>
		<description>I tackled this same sort of thing a couple of years ago.  The client wanted to know how long a certain trouble ticket had been open, both real time and business hours.  It caused me to do exactly the same thing, namely create my own LS class.

I posted &lt;a href=&quot;http://www.openntf.org/projects/codebin/codebin.nsf/0/E1FC9779687133CB8625722D00277503&quot;&gt;my class&lt;/a&gt; on OpenNTF.  You might want to take a look at it and see how similar our approaches were.

Sean---</description>
		<content:encoded><![CDATA[<p>I tackled this same sort of thing a couple of years ago.  The client wanted to know how long a certain trouble ticket had been open, both real time and business hours.  It caused me to do exactly the same thing, namely create my own LS class.</p>
<p>I posted <a href="http://www.openntf.org/projects/codebin/codebin.nsf/0/E1FC9779687133CB8625722D00277503">my class</a> on OpenNTF.  You might want to take a look at it and see how similar our approaches were.</p>
<p>Sean&#8212;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

