<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/popular/language/vbnet</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 22 May 2013 05:25:27 GMT</pubDate>
<item>
<title>(VB.NET) Get Latitude and Longitude from Address (using Google Maps) - blackf0rk</title>
<link>http://snipplr.com/view/14929/get-latitude-and-longitude-from-address-using-google-maps/</link>
<description><![CDATA[ <p>Use inType=0 and feed in a specific Google Maps URL to parse out the GeoCoords from the URL
e.g. http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=53154&amp;sll=37.0625,-95.677068&amp;sspn=52.505328,80.507812&amp;ie=UTF8&amp;ll=42.858224,-88.000832&amp;spn=0.047943,0.078621&amp;t=h&amp;z=14
Function returns a string of geocoords (e.g. "-87.9010610,42.8864960")

Use inType=1 and feed in a zip code, address, or business name
Function returns a string of geocoords (e.g. "-87.9010610,42.8864960")
If an invalid address, zip code or location was entered, the function will return "0,0"</p> ]]></description>
<pubDate>Tue, 12 May 2009 10:33:03 GMT</pubDate>
<guid>http://snipplr.com/view/14929/get-latitude-and-longitude-from-address-using-google-maps/</guid>
</item>
<item>
<title>(VB.NET) Simple String Encryption - blackf0rk</title>
<link>http://snipplr.com/view/13048/simple-string-encryption/</link>
<description><![CDATA[ <p>Passing in a seed and your string will return an encrypted string. Pass in the same seed and the encrypted string again and it will return the original unencrypted string.</p> ]]></description>
<pubDate>Thu, 12 Mar 2009 17:08:19 GMT</pubDate>
<guid>http://snipplr.com/view/13048/simple-string-encryption/</guid>
</item>
<item>
<title>(VB.NET) Strip HTML - bonitoo</title>
<link>http://snipplr.com/view/33036/strip-html/</link>
<description><![CDATA[ <p>Strip HTML tags from string.. Completed!</p> ]]></description>
<pubDate>Fri, 23 Apr 2010 20:49:52 GMT</pubDate>
<guid>http://snipplr.com/view/33036/strip-html/</guid>
</item>
<item>
<title>(VB.NET) State Dropdown - fuzzylogic</title>
<link>http://snipplr.com/view/21967/state-dropdown/</link>
<description><![CDATA[ <p>Put in your base class (called GlobalClass in my case) and initiate using the two declarative objects at the bottom.</p> ]]></description>
<pubDate>Tue, 27 Oct 2009 12:04:10 GMT</pubDate>
<guid>http://snipplr.com/view/21967/state-dropdown/</guid>
</item>
<item>
<title>(VB.NET) Count Lines in RichTextBox - brandonio21</title>
<link>http://snipplr.com/view/21078/count-lines-in-richtextbox/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 12 Oct 2009 23:18:04 GMT</pubDate>
<guid>http://snipplr.com/view/21078/count-lines-in-richtextbox/</guid>
</item>
<item>
<title>(VB.NET) Program Updater(vb2008) - brandonio21</title>
<link>http://snipplr.com/view/19324/program-updatervb2008/</link>
<description><![CDATA[ <p>Variable/Parameter Discussion : 
msg = Do you want to display a message box if you have the current version? (true/false)
currentversion = The version of the program
txtdocumentaddress = The text document web address containing the most updated version
exeaddress = the location of the updater .exe  [You can make this with WINRAR - To learn how to do this goto : http://www.hotlinkfiles.com/files/2799514_xsw67/tut.txt


\This is my first snipplr post, Hope you enjoy/
    This coding is used in *Brandons Timer 9* and *Brandons HTML-Ide*</p> ]]></description>
<pubDate>Sun, 06 Sep 2009 18:49:04 GMT</pubDate>
<guid>http://snipplr.com/view/19324/program-updatervb2008/</guid>
</item>
<item>
<title>(VB.NET) Check if username is in use - fuzzylogic</title>
<link>http://snipplr.com/view/17387/check-if-username-is-in-use/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 23 Jul 2009 10:58:06 GMT</pubDate>
<guid>http://snipplr.com/view/17387/check-if-username-is-in-use/</guid>
</item>
<item>
<title>(VB.NET) Send HTML Email - fuzzylogic</title>
<link>http://snipplr.com/view/17383/send-html-email/</link>
<description><![CDATA[ <p>Quick function to send out  decent-looking (but simple) html emails.</p> ]]></description>
<pubDate>Thu, 23 Jul 2009 10:38:45 GMT</pubDate>
<guid>http://snipplr.com/view/17383/send-html-email/</guid>
</item>
<item>
<title>(VB.NET) Test for Internet Connection - blackf0rk</title>
<link>http://snipplr.com/view/14928/test-for-internet-connection/</link>
<description><![CDATA[ <p>This is a simple function to test for an internet connection. Originally grabbed from "devbuzz" at the devbuzz forums (see link) and now modified for VB.NET 3.5</p> ]]></description>
<pubDate>Tue, 12 May 2009 10:29:23 GMT</pubDate>
<guid>http://snipplr.com/view/14928/test-for-internet-connection/</guid>
</item>
<item>
<title>(VB.NET) Read web page and extract url's - mcgraf</title>
<link>http://snipplr.com/view/13397/read-web-page-and-extract-urls/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 24 Mar 2009 07:45:01 GMT</pubDate>
<guid>http://snipplr.com/view/13397/read-web-page-and-extract-urls/</guid>
</item>
<item>
<title>(VB.NET) VB.NET Singleton Class - DaveChild</title>
<link>http://snipplr.com/view/8327/vbnet-singleton-class/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 11 Sep 2008 10:07:45 GMT</pubDate>
<guid>http://snipplr.com/view/8327/vbnet-singleton-class/</guid>
</item>
<item>
<title>(VB.NET) Download List Of Files - mafro</title>
<link>http://snipplr.com/view/8029/download-list-of-files/</link>
<description><![CDATA[ <p>Download multiple files listed as filenames in a text file.</p> ]]></description>
<pubDate>Tue, 26 Aug 2008 09:19:31 GMT</pubDate>
<guid>http://snipplr.com/view/8029/download-list-of-files/</guid>
</item>
<item>
<title>(VB.NET) Current User - mafro</title>
<link>http://snipplr.com/view/2543/current-user/</link>
<description><![CDATA[ <p>Retrieve current user identity</p> ]]></description>
<pubDate>Fri, 27 Apr 2007 02:45:59 GMT</pubDate>
<guid>http://snipplr.com/view/2543/current-user/</guid>
</item>
<item>
<title>(VB.NET) Screen Scrape - old - roberocity</title>
<link>http://snipplr.com/view/1374/screen-scrape--old/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 10 Oct 2006 19:39:04 GMT</pubDate>
<guid>http://snipplr.com/view/1374/screen-scrape--old/</guid>
</item>
<item>
<title>(VB.NET) Saving data from gridview to xml file - tabook22</title>
<link>http://snipplr.com/view/56388/saving-data-from-gridview-to-xml-file/</link>
<description><![CDATA[ <p>this code will show you how to save data from gridview to xml file</p> ]]></description>
<pubDate>Mon, 11 Jul 2011 06:52:06 GMT</pubDate>
<guid>http://snipplr.com/view/56388/saving-data-from-gridview-to-xml-file/</guid>
</item>
<item>
<title>(VB.NET) Binding xml file to Gridview - tabook22</title>
<link>http://snipplr.com/view/56384/binding-xml-file-to-gridview/</link>
<description><![CDATA[ <p>This code will be used to bind an xml file to gridview</p> ]]></description>
<pubDate>Mon, 11 Jul 2011 06:44:39 GMT</pubDate>
<guid>http://snipplr.com/view/56384/binding-xml-file-to-gridview/</guid>
</item>
<item>
<title>(VB.NET) add data to an existing xml file - tabook22</title>
<link>http://snipplr.com/view/56383/add-data-to-an-existing-xml-file/</link>
<description><![CDATA[ <p>This code snippet is used to add data to an existing xml file</p> ]]></description>
<pubDate>Mon, 11 Jul 2011 06:42:47 GMT</pubDate>
<guid>http://snipplr.com/view/56383/add-data-to-an-existing-xml-file/</guid>
</item>
<item>
<title>(VB.NET) Fullscreen in VB.Net - indra</title>
<link>http://snipplr.com/view/54815/fullscreen-in-vbnet/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 03 Jun 2011 15:14:52 GMT</pubDate>
<guid>http://snipplr.com/view/54815/fullscreen-in-vbnet/</guid>
</item>
<item>
<title>(VB.NET) Full snipplr API structures and interfaces - marlu</title>
<link>http://snipplr.com/view/54474/full-snipplr-api-structures-and-interfaces/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 27 May 2011 10:34:49 GMT</pubDate>
<guid>http://snipplr.com/view/54474/full-snipplr-api-structures-and-interfaces/</guid>
</item>
<item>
<title>(VB.NET) Run just one instance application - indra</title>
<link>http://snipplr.com/view/46374/run-just-one-instance-application/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 01 Jan 2011 17:24:33 GMT</pubDate>
<guid>http://snipplr.com/view/46374/run-just-one-instance-application/</guid>
</item>
<item>
<title>(VB.NET) Use OLEDB To Read An Excel File - brettville</title>
<link>http://snipplr.com/view/45957/use-oledb-to-read-an-excel-file/</link>
<description><![CDATA[ <p>Doesn't do any validation, you would want to check if a</p> ]]></description>
<pubDate>Mon, 20 Dec 2010 17:00:53 GMT</pubDate>
<guid>http://snipplr.com/view/45957/use-oledb-to-read-an-excel-file/</guid>
</item>
<item>
<title>(VB.NET) DataReader code block - delineo</title>
<link>http://snipplr.com/view/44029/datareader-code-block/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 12 Nov 2010 21:22:29 GMT</pubDate>
<guid>http://snipplr.com/view/44029/datareader-code-block/</guid>
</item>
<item>
<title>(VB.NET) VB.net KeyPress Events - connorjackson</title>
<link>http://snipplr.com/view/43279/vbnet-keypress-events/</link>
<description><![CDATA[ <p>Add this code into the KeyDown event for the form, (e.g Private Sub frmMainGame_KeyDown...) then add the code where the comments go.</p> ]]></description>
<pubDate>Sat, 30 Oct 2010 06:41:38 GMT</pubDate>
<guid>http://snipplr.com/view/43279/vbnet-keypress-events/</guid>
</item>
<item>
<title>(VB.NET) Calculate Factorial - indra</title>
<link>http://snipplr.com/view/42963/calculate-factorial/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 26 Oct 2010 13:37:39 GMT</pubDate>
<guid>http://snipplr.com/view/42963/calculate-factorial/</guid>
</item>
<item>
<title>(VB.NET) Hash a string using MD5 hash algorithm - psybuck2002us</title>
<link>http://snipplr.com/view/38505/hash-a-string-using-md5-hash-algorithm/</link>
<description><![CDATA[ <p>This function accepts a string and converts it to its corresponding 32 bit hexadecimal MD5 hash. It comes in handy for encrypting passwords and keys.</p> ]]></description>
<pubDate>Thu, 05 Aug 2010 06:56:39 GMT</pubDate>
<guid>http://snipplr.com/view/38505/hash-a-string-using-md5-hash-algorithm/</guid>
</item>
</channel>
</rss>