<?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>BncApps &#187; Visual Basics 6</title>
	<atom:link href="http://bncapps.com/category/visual-basics-6/feed/" rel="self" type="application/rss+xml" />
	<link>http://bncapps.com</link>
	<description>Open Source Applications and General Technology Blog</description>
	<lastBuildDate>Sat, 11 Dec 2010 23:48:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>VB6 &#8211; Downloading a file</title>
		<link>http://bncapps.com/vb6-downloading-a-file/</link>
		<comments>http://bncapps.com/vb6-downloading-a-file/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 00:45:49 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Visual Basics 6]]></category>
		<category><![CDATA[download file]]></category>
		<category><![CDATA[downloading]]></category>
		<category><![CDATA[vb6]]></category>

		<guid isPermaLink="false">http://bncapps.com/?p=222</guid>
		<description><![CDATA[To download a file through your application and save it is simple. This can be used to check for updates and download them with ease! The code is simple, this code would download the "Gravity Example" from this post. &#160; Dim bytes&#40;&#41; As Byte bytes&#40;&#41; = Inet1.OpenURL&#40;&#34;http://bncapps.com/wp-content/uploads/GravityTests-Bin+Scr.rar&#34;, icByteArray&#41; ff = FreeFile Open App.Path &#38; &#34;/GravityTests-Bin+Scr.rar&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>To download a file through your application and save it is simple. This can be used to check for updates and download them with ease!</p>
<p>The code is simple, this code would download the "Gravity Example" from <a href="http://bncapps.com/?p=91">this post.</a></p>
<pre class="vb">&nbsp;
<span style="color: #b1b100;">Dim</span> bytes<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">As</span> Byte
bytes<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> = Inet1.<span style="color: #66cc66;">OpenURL</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;http://bncapps.com/wp-content/uploads/GravityTests-Bin+Scr.rar&quot;</span>, icByteArray<span style="color: #66cc66;">&#41;</span>
    ff = <span style="color: #b1b100;">FreeFile</span>
    <span style="color: #b1b100;">Open</span> App.<span style="color: #66cc66;">Path</span> &amp; <span style="color: #ff0000;">&quot;/GravityTests-Bin+Scr.rar&quot;</span> <span style="color: #b1b100;">For</span> Binary <span style="color: #b1b100;">As</span> #ff
        <span style="color: #b1b100;">Put</span> #ff, , bytes<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
   <span style="color: #b1b100;">Close</span> #ff
&nbsp;</pre>
<p><strong>Note: The download link must be a direct link to the file or you will end up downloading the web page.</strong></p>
<p>Be sure to have a INet control on your form or it will be unable to connect!<br />
Also, if you dont want to save the file in the "app path" which is the current directory of the application, remove that part and simply make it:</p>
<pre class="vb">&nbsp;
<span style="color: #b1b100;">Open</span> <span style="color: #ff0000;">&quot;C:\Program Files\GravityTests-Bin+Scr.rar&quot;</span> <span style="color: #b1b100;">For</span> Binary <span style="color: #b1b100;">As</span> #ff
&nbsp;</pre>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://bncapps.com/vb6-downloading-a-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tibia Multi Hotkeys</title>
		<link>http://bncapps.com/tibia-multi-hotkeys/</link>
		<comments>http://bncapps.com/tibia-multi-hotkeys/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 21:51:35 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Visual Basics 6]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[tibia multi hotkeys]]></category>
		<category><![CDATA[vb6]]></category>
		<category><![CDATA[visual]]></category>

		<guid isPermaLink="false">http://bncapps.com/?p=46</guid>
		<description><![CDATA[Tibia Multi Hotkeys is a program used to have multiple sets of hotkeys in the MMORPG game Tibia]]></description>
			<content:encoded><![CDATA[<p>This application is for the MMORPG Tibia (Tibia.com)</p>
<p>It basically allows you to do something that Cipsoft did not allow themselves, multiple sets of hotkeys. You can have different hotkey sets for each character, or each world. It's easy to use and like all programs posted here, its open source released under the GPL license. This means you are free to modify and redistribute it, along as its linked back to BncApps and the source is distributed with it.<br />
Screenshot and downloads below<br />
<center><br />
<div id="attachment_47" class="wp-caption alignnone" style="width: 310px"><a href="http://bncapps.com/wp-content/uploads/2008/12/multihotkeysscreenshot.jpg"><img src="http://bncapps.com/wp-content/uploads/2008/12/multihotkeysscreenshot.jpg" alt="" title="multihotkeysscreenshot" width="300" height="242" class="size-medium wp-image-47" /></a><p class="wp-caption-text">Screenshot of the program</p></div></center><br />
Download Binary Only: <a class="downloadlink" href="http://bncapps.com/wp-content/plugins/download-monitor/download.php?id=1" title="Version 1.0 downloaded 699 times" >Tibia Multi Hotkeys Binary (699) - 8.39 kB</a><br />
Download Binary and Sources: <a class="downloadlink" href="http://bncapps.com/wp-content/plugins/download-monitor/download.php?id=2" title="Version 1.0 downloaded 637 times" >Tibia Multi Hotkeys Binary+Source (637) - 50.29 kB</a></p>
<p><a href="http://www.ziddu.com/download/2927908/TibiaMultiHotkeys-BinScr.rar.html">Click here Download Binary and Sources from Ziddu and support BncApps.</a></p>
<p>Use of this application is self explanatory. If you have any problems, contact me.</p>
]]></content:encoded>
			<wfw:commentRss>http://bncapps.com/tibia-multi-hotkeys/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
