<?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>Mon, 26 Jul 2010 16:16:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to generate list in combobox with all dates of current month</title>
		<link>http://www.codeitbetter.com/how-to-generate-list-in-combobox-with-all-dates-of-current-month/</link>
		<comments>http://www.codeitbetter.com/how-to-generate-list-in-combobox-with-all-dates-of-current-month/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 12:48:32 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[code library]]></category>
		<category><![CDATA[combobox]]></category>
		<category><![CDATA[current]]></category>
		<category><![CDATA[dates]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[microsoft access visual basic]]></category>
		<category><![CDATA[month]]></category>
		<category><![CDATA[vb6 tools]]></category>
		<category><![CDATA[visual basic 6 api]]></category>
		<category><![CDATA[visual basic 6 programs]]></category>
		<category><![CDATA[visual basic help]]></category>
		<category><![CDATA[visual basic net source code]]></category>
		<category><![CDATA[visual basic source]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-generate-list-in-combobox-with-all-dates-of-current-month/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 'Date &#38; Time - How to generate list in combobox with all dates of current month Option Explicit &#160; Private Sub Form_Load() Call GenerateComboList(Combo1) End Sub &#160; Public Sub GenerateComboList(cbo As ComboBox) Dim I As Long For I = [...]<p><a href="http://www.codeitbetter.com/how-to-generate-list-in-combobox-with-all-dates-of-current-month/">How to generate list in combobox with all dates of current 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-generate-list-in-combobox-with-all-dates-of-current-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get the Name of the Day from the inputted date</title>
		<link>http://www.codeitbetter.com/how-to-get-the-name-of-the-day-from-the-inputted-date/</link>
		<comments>http://www.codeitbetter.com/how-to-get-the-name-of-the-day-from-the-inputted-date/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 04:56:08 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[activex form]]></category>
		<category><![CDATA[activex source code]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[how to database]]></category>
		<category><![CDATA[how to library]]></category>
		<category><![CDATA[how to vb6]]></category>
		<category><![CDATA[inputted]]></category>
		<category><![CDATA[microsoft visual basic 6.0]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[source code tutorial]]></category>
		<category><![CDATA[visual basic programming]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-get-the-name-of-the-day-from-the-inputted-date/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 'Date &#38; Time - How to Get the Name of the Day from the inputted date Option Explicit &#160; Public Function GetDayName(ByVal strDate As Date) As String GetDayName = Format(strDate, &#34;dddd&#34;) End Function &#160; 'How can I use this function: strDay = GetDayName(&#34;1/2/2007&#34;) How to Get [...]<p><a href="http://www.codeitbetter.com/how-to-get-the-name-of-the-day-from-the-inputted-date/">How to Get the Name of the Day from the inputted 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-get-the-name-of-the-day-from-the-inputted-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check Current Date and Time</title>
		<link>http://www.codeitbetter.com/how-to-check-current-date-and-time/</link>
		<comments>http://www.codeitbetter.com/how-to-check-current-date-and-time/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 04:22:49 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[current]]></category>
		<category><![CDATA[database programming]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[source code tutorial]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[vb source code]]></category>
		<category><![CDATA[visual basic 6 database]]></category>
		<category><![CDATA[visual basic 6 source]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-check-current-date-and-time/</guid>
		<description><![CDATA[1 2 3 4 5 'Date &#38; Time - How to check Current Date and Time Private Sub Main() MsgBox Format(Time, &#34;Long Time&#34;) &#38; &#34; - &#34; &#38; Format(Date, &#34;Long Date&#34;) End Sub How to check Current Date and Time is a post from: CodeItBetter Programming Related posts:How to Add one day in current date [...]<p><a href="http://www.codeitbetter.com/how-to-check-current-date-and-time/">How to check Current Date and 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-check-current-date-and-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get full format date ex: Wednesday, 1st Nov. 2006</title>
		<link>http://www.codeitbetter.com/how-to-get-full-format-date-ex-wednesday-1st-nov-2006/</link>
		<comments>http://www.codeitbetter.com/how-to-get-full-format-date-ex-wednesday-1st-nov-2006/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 23:40:06 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Date & Time]]></category>
		<category><![CDATA[1st]]></category>
		<category><![CDATA[2006]]></category>
		<category><![CDATA[activex project]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[ex:]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[full]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[nov]]></category>
		<category><![CDATA[program visual basic 6]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[vb programs]]></category>
		<category><![CDATA[vb6 source code]]></category>
		<category><![CDATA[visual basic 6]]></category>
		<category><![CDATA[visual basic 6.0 activex]]></category>
		<category><![CDATA[visual basic 6.0 code]]></category>
		<category><![CDATA[visual basic library]]></category>
		<category><![CDATA[visual basic net]]></category>
		<category><![CDATA[wednesday]]></category>

		<guid isPermaLink="false">http://www.codeitbetter.com/how-to-get-full-format-date-ex-wednesday-1st-nov-2006/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 'Date &#38; Time - How to get full format date ex: Wednesday, 1st Nov. 2006 Option Explicit &#160; Public Function FullFormatDate(ByVal theDate As Date) As String ' Inputs - theDate should be dd/mm/yyyy or dd/mm/yy Dim [...]<p><a href="http://www.codeitbetter.com/how-to-get-full-format-date-ex-wednesday-1st-nov-2006/">How to get full format date ex: Wednesday, 1st Nov. 2006</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-full-format-date-ex-wednesday-1st-nov-2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Sun, 04 Jan 2009 21:39:50 +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>
	</channel>
</rss>
