<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Make a Currency Converter in Visual Basic 2005</title>
	<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/</link>
	<description></description>
	<pubDate>Tue, 02 Dec 2008 12:44:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: priyanka</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-20335</link>
		<dc:creator>priyanka</dc:creator>
		<pubDate>Tue, 15 Jul 2008 18:08:04 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-20335</guid>
		<description>is there no one 2 help me out........................</description>
		<content:encoded><![CDATA[<p>is there no one 2 help me out&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: priyanka</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-19734</link>
		<dc:creator>priyanka</dc:creator>
		<pubDate>Sun, 06 Jul 2008 08:29:50 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-19734</guid>
		<description>hey everyone.....
i want 2 make a project for my assignment........n m making on atm(automated teller machine)
i had successfully designed d forms but m damm confused for its coding..........i jst want sum code 2 update d account bal if i withdraw or debit d amount of account bal......plzz help me out
waiting 4 d needful help

regards</description>
		<content:encoded><![CDATA[<p>hey everyone&#8230;..<br />
i want 2 make a project for my assignment&#8230;&#8230;..n m making on atm(automated teller machine)<br />
i had successfully designed d forms but m damm confused for its coding&#8230;&#8230;&#8230;.i jst want sum code 2 update d account bal if i withdraw or debit d amount of account bal&#8230;&#8230;plzz help me out<br />
waiting 4 d needful help</p>
<p>regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fgh</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-17511</link>
		<dc:creator>fgh</dc:creator>
		<pubDate>Thu, 05 Jun 2008 00:00:25 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-17511</guid>
		<description>If (RadioUSD.Checked = True) Then
            If (IsNumeric(ResultUSD.Text) = True) Then
                ResultAUD.Text = (Val(ResultUSD.Text) * 1.1875)
                ResultGBP.Text = (Val(ResultUSD.Text) * 0.507)
            ElseIf (ResultUSD.Text = "") Then
                ResultAUD.Text = "Please enter a value"
                ResultGBP.Text = "Please enter a value"
            Else
                ResultAUD.Text = "Numbers only please"
                ResultGBP.Text = "Numbers only please"
            End If

        End If

        If (RadioAUD.Checked = True) Then
            If (IsNumeric(ResultAUD.Text) = True) Then
                ResultUSD.Text = (Val(ResultAUD.Text) * 0.842)
                ResultGBP.Text = (Val(ResultAUD.Text) * 0.4269)
            ElseIf (ResultAUD.Text = "") Then
                ResultGBP.Text = "Please enter a value"
                ResultUSD.Text = "Please enter a value"
            Else
                ResultGBP.Text = "Numbers only please"
                ResultUSD.Text = "Numbers only please"
            End If
        End If

        If (RadioGBP.Checked = True) Then
            If (IsNumeric(ResultGBP.Text) = True) Then
                ResultAUD.Text = (Val(ResultGBP.Text) * 2.342)
                ResultUSD.Text = (Val(ResultGBP.Text) * 1.972)
            ElseIf (ResultGBP.Text = "") Then
                ResultAUD.Text = "Please enter a value"
                ResultGBP.Text = "Please enter a value"
            Else
                ResultAUD.Text = "Numbers only please"
                ResultGBP.Text = "Numbers only please"
            End If
        End If</description>
		<content:encoded><![CDATA[<p>If (RadioUSD.Checked = True) Then<br />
            If (IsNumeric(ResultUSD.Text) = True) Then<br />
                ResultAUD.Text = (Val(ResultUSD.Text) * 1.1875)<br />
                ResultGBP.Text = (Val(ResultUSD.Text) * 0.507)<br />
            ElseIf (ResultUSD.Text = &#8220;&#8221;) Then<br />
                ResultAUD.Text = &#8220;Please enter a value&#8221;<br />
                ResultGBP.Text = &#8220;Please enter a value&#8221;<br />
            Else<br />
                ResultAUD.Text = &#8220;Numbers only please&#8221;<br />
                ResultGBP.Text = &#8220;Numbers only please&#8221;<br />
            End If</p>
<p>        End If</p>
<p>        If (RadioAUD.Checked = True) Then<br />
            If (IsNumeric(ResultAUD.Text) = True) Then<br />
                ResultUSD.Text = (Val(ResultAUD.Text) * 0.842)<br />
                ResultGBP.Text = (Val(ResultAUD.Text) * 0.4269)<br />
            ElseIf (ResultAUD.Text = &#8220;&#8221;) Then<br />
                ResultGBP.Text = &#8220;Please enter a value&#8221;<br />
                ResultUSD.Text = &#8220;Please enter a value&#8221;<br />
            Else<br />
                ResultGBP.Text = &#8220;Numbers only please&#8221;<br />
                ResultUSD.Text = &#8220;Numbers only please&#8221;<br />
            End If<br />
        End If</p>
<p>        If (RadioGBP.Checked = True) Then<br />
            If (IsNumeric(ResultGBP.Text) = True) Then<br />
                ResultAUD.Text = (Val(ResultGBP.Text) * 2.342)<br />
                ResultUSD.Text = (Val(ResultGBP.Text) * 1.972)<br />
            ElseIf (ResultGBP.Text = &#8220;&#8221;) Then<br />
                ResultAUD.Text = &#8220;Please enter a value&#8221;<br />
                ResultGBP.Text = &#8220;Please enter a value&#8221;<br />
            Else<br />
                ResultAUD.Text = &#8220;Numbers only please&#8221;<br />
                ResultGBP.Text = &#8220;Numbers only please&#8221;<br />
            End If<br />
        End If</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Freddy</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-10933</link>
		<dc:creator>Freddy</dc:creator>
		<pubDate>Thu, 17 Jan 2008 09:51:56 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-10933</guid>
		<description>&lt;a href="www.google.com" rel="nofollow"&gt;Not much of a turoial&lt;/a&gt;, as it's mostly copy and paste. Tut</description>
		<content:encoded><![CDATA[<p><a href="www.google.com?PHPSESSID=31f9eb6a79810667e1af1367055287b2" rel="nofollow">Not much of a turoial</a>, as it&#8217;s mostly copy and paste. Tut</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Freddy</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-10932</link>
		<dc:creator>Freddy</dc:creator>
		<pubDate>Thu, 17 Jan 2008 09:41:22 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-10932</guid>
		<description>&lt;a href="www.google.com"&gt;Not much of a turoial&lt;/a&gt;, as it's mostly &lt;script language='javascipt' type='text/javascript'&gt;&lt;onMouseOver="window.open('http://www.google.com,'mywindow','width=400,height=200')"&gt;copy and paste&lt;/script&gt;. Tut</description>
		<content:encoded><![CDATA[<p><a href="www.google.com?PHPSESSID=31f9eb6a79810667e1af1367055287b2">Not much of a turoial</a>, as it&#8217;s mostly <script language=\'javascipt\' type=\'text/javascript\'><onmouseover ="window.open(\'http://www.google.com,\'mywindow\',\'width=400,height=200\')">copy and paste</onmouseover></script>. Tut</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eibwen</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5620</link>
		<dc:creator>Eibwen</dc:creator>
		<pubDate>Sun, 17 Jun 2007 16:13:53 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5620</guid>
		<description>I'll help you out.

[code]Private Sub Command1_Click()
End
End Sub[/code]
This code closes the program.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll help you out.</p>
<p>[code]Private Sub Command1_Click()<br />
End<br />
End Sub[/code]<br />
This code closes the program.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5610</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Sun, 17 Jun 2007 01:50:45 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5610</guid>
		<description>Yea, I will try.</description>
		<content:encoded><![CDATA[<p>Yea, I will try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: morti</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5605</link>
		<dc:creator>morti</dc:creator>
		<pubDate>Sat, 16 Jun 2007 14:36:32 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5605</guid>
		<description>cool. I wanna learn VB atm so can you do some more (simple) tuts
thanks</description>
		<content:encoded><![CDATA[<p>cool. I wanna learn VB atm so can you do some more (simple) tuts<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eibwen</title>
		<link>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5600</link>
		<dc:creator>Eibwen</dc:creator>
		<pubDate>Sat, 16 Jun 2007 01:12:35 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/visual-basic-tutorials/make-a-currency-converter-in-visual-basic-2005/#comment-5600</guid>
		<description>It would be better if you had VB6. :P</description>
		<content:encoded><![CDATA[<p>It would be better if you had VB6. <img src='http://www.awestyproductions.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
