<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CodeItBetter Programming &#187; Date &amp; Time</title>
	<atom:link href="http://www.codeitbetter.com/category/vb6-date-and-time-programming-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codeitbetter.com</link>
	<description>Another VB Programming Blog</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:50:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to get last day of the month</title>
		<link>http://www.codeitbetter.com/how-to-get-last-day-of-the-month/</link>
		<comments>http://www.codeitbetter.com/how-to-get-last-day-of-the-month/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 23:42:11 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[active x]]></category>
		<category><![CDATA[activex code]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[last]]></category>
		<category><![CDATA[learn visual basic 6]]></category>
		<category><![CDATA[month]]></category>
		<category><![CDATA[source code bank]]></category>
		<category><![CDATA[vb programming]]></category>
		<category><![CDATA[vb6 active x]]></category>
		<category><![CDATA[visual basic components]]></category>
		<category><![CDATA[visual basic programming]]></category>
		<category><![CDATA[visual basic routines]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-get-last-day-of-the-month/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 'Date &#38; Time - How to get last day of the month Option Explicit &#160; Public Function LastDayInMonth(dDate As Date) LastDayInMonth = Format(DateSerial(Year(dDate), Month(dDate) + 1, 0), &#34;DDDD&#34;) End Function 'How can I call this function: 'Debug.Print LastDayInMonth(Date) How to get last day of the month is [...]<p><a href="http://www.codeitbetter.com/how-to-get-last-day-of-the-month/">How to get last day of the month</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-get-last-day-of-the-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find Last business day for the given date</title>
		<link>http://www.codeitbetter.com/how-to-find-last-business-day-for-the-given-date/</link>
		<comments>http://www.codeitbetter.com/how-to-find-last-business-day-for-the-given-date/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 23:33:57 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[free source code]]></category>
		<category><![CDATA[given]]></category>
		<category><![CDATA[how to programs]]></category>
		<category><![CDATA[last]]></category>
		<category><![CDATA[microsoft visual basic]]></category>
		<category><![CDATA[tips visual basic]]></category>
		<category><![CDATA[tutorial visual basic]]></category>
		<category><![CDATA[vb programming]]></category>
		<category><![CDATA[visual basic 6.0 tutorials]]></category>
		<category><![CDATA[visual basic class]]></category>
		<category><![CDATA[visual basic net]]></category>
		<category><![CDATA[visual basic source code examples]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-find-last-business-day-for-the-given-date/</guid>
		<description><![CDATA[1 2 3 4 5 6 'Date &#38; Time - How to find Last business day for the given date Private Function LastBuisnessDay(ByVal DT As Date) As Date Dim lDay As Long lDay = Weekday(DT, vbSunday) - 2 If lDay &#62; 0 Then LastBuisnessDay = DT - 1 Else LastBuisnessDay = DT - (3 + [...]<p><a href="http://www.codeitbetter.com/how-to-find-last-business-day-for-the-given-date/">How to find Last business day for the given date</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-find-last-business-day-for-the-given-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Count Number Of day In a month</title>
		<link>http://www.codeitbetter.com/how-to-count-number-of-day-in-a-month/</link>
		<comments>http://www.codeitbetter.com/how-to-count-number-of-day-in-a-month/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 23:40:14 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[activex]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[microsoft access visual basic]]></category>
		<category><![CDATA[month]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[source code asp net]]></category>
		<category><![CDATA[vb codes]]></category>
		<category><![CDATA[visual basic source code library]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-count-number-of-day-in-a-month/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 14 'Date &#38; Time - How to Count Number Of day In a month Private Sub Command1_Click() MsgBox DaysInMonth(&#34;20/07/2006&#34;) End Sub &#160; Public Function DaysInMonth(ByVal dDate As Date) As Integer DaysInMonth = Day(DateAdd(&#34;m&#34;, 1, dDate - Day(dDate) + 1) - 1) End [...]<p><a href="http://www.codeitbetter.com/how-to-count-number-of-day-in-a-month/">How to Count Number Of day In a month</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-count-number-of-day-in-a-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get exact age by accepting  the date of birth (in four ways)</title>
		<link>http://www.codeitbetter.com/how-to-get-exact-age-by-accepting-the-date-of-birth-in-four-ways/</link>
		<comments>http://www.codeitbetter.com/how-to-get-exact-age-by-accepting-the-date-of-birth-in-four-ways/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 11:33:30 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[accepting]]></category>
		<category><![CDATA[activex control vb6]]></category>
		<category><![CDATA[activex project]]></category>
		<category><![CDATA[age]]></category>
		<category><![CDATA[birth]]></category>
		<category><![CDATA[component visual basic 6]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[exact]]></category>
		<category><![CDATA[four]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[ocx code]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[vb6 code library]]></category>
		<category><![CDATA[visual basic net code]]></category>
		<category><![CDATA[visual basic net source code]]></category>
		<category><![CDATA[ways]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-get-exact-age-by-accepting-the-date-of-birth-in-four-ways/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [...]<p><a href="http://www.codeitbetter.com/how-to-get-exact-age-by-accepting-the-date-of-birth-in-four-ways/">How to get exact age by accepting  the date of birth (in four ways)</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-get-exact-age-by-accepting-the-date-of-birth-in-four-ways/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get GMT time from local system time</title>
		<link>http://www.codeitbetter.com/how-to-get-gmt-time-from-local-system-time/</link>
		<comments>http://www.codeitbetter.com/how-to-get-gmt-time-from-local-system-time/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 23:32:27 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[code library]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[gmt]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[microsoft visual basic 6]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[vb activex control]]></category>
		<category><![CDATA[visual basic codes]]></category>
		<category><![CDATA[visual basic net source code]]></category>
		<category><![CDATA[visual basic projects]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-get-gmt-time-from-local-system-time/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [...]<p><a href="http://www.codeitbetter.com/how-to-get-gmt-time-from-local-system-time/">How to get GMT time from local system time</a> is a post from: <a href="http://www.codeitbetter.com">CodeItBetter Programming</a></p>
]]></description>
		<wfw:commentRss>http://www.codeitbetter.com/how-to-get-gmt-time-from-local-system-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/48 queries in 0.108 seconds using disk: basic
Object Caching 1055/1199 objects using disk: basic

Served from: www.codeitbetter.com @ 2012-02-09 07:12:32 -->
