<?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>Vergel's Excel and Visual Basic Blog &#187; Visual Basic</title>
	<atom:link href="http://www.vadriano.com/excel-vb/category/visual-basic/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vadriano.com/excel-vb</link>
	<description>Learn Excel and Visual Basic.</description>
	<lastBuildDate>Tue, 04 Mar 2008 01:04:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sending email from VB</title>
		<link>http://www.vadriano.com/excel-vb/2007/09/02/sending-email-from-vb/</link>
		<comments>http://www.vadriano.com/excel-vb/2007/09/02/sending-email-from-vb/#comments</comments>
		<pubDate>Sun, 02 Sep 2007 16:35:46 +0000</pubDate>
		<dc:creator>Vergel</dc:creator>
				<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.vadriano.com/excel-vb/2007/09/02/sending-email-from-vb/</guid>
		<description><![CDATA[It's easy to send an email from VB.  Create a new console application project in Visual Basic Express.  Then paste this code in the Module1.vb file.  The code demonstrates the basic steps in constructing a simple email message and sending it. 


Imports System.Net.Mail
Module Module1
&#160; &#160; Sub Main&#40;&#41;
&#160; &#160; &#160; &#160; Dim msg [...]]]></description>
		<wfw:commentRss>http://www.vadriano.com/excel-vb/2007/09/02/sending-email-from-vb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate a Random Number Between Two Values</title>
		<link>http://www.vadriano.com/excel-vb/2007/05/16/generate-a-random-number-between-two-values/</link>
		<comments>http://www.vadriano.com/excel-vb/2007/05/16/generate-a-random-number-between-two-values/#comments</comments>
		<pubDate>Wed, 16 May 2007 21:58:45 +0000</pubDate>
		<dc:creator>Vergel</dc:creator>
				<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.vadriano.com/excel-vb/2007/05/16/generate-a-random-number-between-two-values/</guid>
		<description><![CDATA[Here's a quick and easy VB function to generate a random number between two values that you specify.


Public Function GetRandomNumber&#40;ByVal iMinValue As Integer, ByVal iMaxValue As Integer&#41; As Integer
&#160; &#160; Dim r As New Random&#40;System.DateTime.Now.Millisecond&#41;
&#160; &#160; Return r.Next&#40;iMinValue, iMaxValue&#41;
End Function



]]></description>
		<wfw:commentRss>http://www.vadriano.com/excel-vb/2007/05/16/generate-a-random-number-between-two-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create an Excel File from Visual Basic</title>
		<link>http://www.vadriano.com/excel-vb/2007/04/25/create-an-excel-file-from-visual-basic/</link>
		<comments>http://www.vadriano.com/excel-vb/2007/04/25/create-an-excel-file-from-visual-basic/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 00:38:11 +0000</pubDate>
		<dc:creator>Vergel</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.vadriano.com/excel-vb/2007/04/25/create-an-excel-file-from-visual-basic/</guid>
		<description><![CDATA[Creating and working with Excel files from Visual Basic is very easy.  To demonstrate, let's create a very simple console application that will create an excel workbook, "HelloWorld.xls".  In Sheet1!A1 of the workbook, we'll put the words "Hello, World".
Here's how.
1. In Visual Basic 2005 Express, create a new console application.
2. Add a reference [...]]]></description>
		<wfw:commentRss>http://www.vadriano.com/excel-vb/2007/04/25/create-an-excel-file-from-visual-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
