<?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>Dave Enjoys &#187; QBASIC</title>
	<atom:link href="http://www.daveenjoys.com/tag/qbasic/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daveenjoys.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 05:23:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>FreeBasic (Programming)</title>
		<link>http://www.daveenjoys.com/2011/04/30/freebasic-programming/</link>
		<comments>http://www.daveenjoys.com/2011/04/30/freebasic-programming/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 17:18:03 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[BASIC]]></category>
		<category><![CDATA[compiler]]></category>
		<category><![CDATA[Component Frameworks]]></category>
		<category><![CDATA[fbide]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[freebasic]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[pds]]></category>
		<category><![CDATA[QBASIC]]></category>
		<category><![CDATA[quickbasic]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=2271</guid>
		<description><![CDATA[<p>My first experiences programming where on a <a class="zem_slink" title="Commodore 64" rel="wikipedia" href="http://en.wikipedia.org/wiki/Commodore_64">Commodore 64</a> and an <a class="zem_slink" title="Apple II series" rel="wikipedia" href="http://en.wikipedia.org/wiki/Apple_II_series">Apple II</a>+. In both cases there was no separation of the end <a class="zem_slink" title="User interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_interface">user interface</a> and the development interface&#8230;you could just start entering code at the command line and [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div class="wp-caption alignright" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/File:Commodore64.jpg"><img title="Commodore 64 computer (1982). Post processing:..." src="http://www.daveenjoys.com/wp-content/uploads/2011/04/300px-Commodore642.jpg" alt="Commodore 64 computer (1982). Post processing:..." width="300" height="190" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
</div>
<p>My first experiences programming where on a <a class="zem_slink" title="Commodore 64" rel="wikipedia" href="http://en.wikipedia.org/wiki/Commodore_64">Commodore 64</a> and an <a class="zem_slink" title="Apple II series" rel="wikipedia" href="http://en.wikipedia.org/wiki/Apple_II_series">Apple II</a>+. In both cases there was no separation of the end <a class="zem_slink" title="User interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_interface">user interface</a> and the development interface&#8230;you could just start entering code at the command line and it would begin building. Things have come a long ways since then &#8211; this is good and bad. It is no longer quite as easy or essential to get involved in programming, on the other hand one can much more rapidly build complex applications.</p>
<p>If you ever long for the throw back days you may think of <a class="zem_slink" title="QBasic" rel="wikipedia" href="http://en.wikipedia.org/wiki/QBasic">QBasic</a>, which became ubiquitous due to its inclusion with <a class="zem_slink" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> DOS&#8230;but all these concepts are so from yesteryear &#8211; in computer terms they are almost millennia away.</p>
<p>So what if you want to do some simple programming these days with a <a class="zem_slink" title="BASIC" rel="wikipedia" href="http://en.wikipedia.org/wiki/BASIC">BASIC</a> feel to it? One good option is <a href="http://freebasic.net/">FreeBasic</a>. FreeBasic was built to be largely backwards compatible with Microsoft&#8217;s QBasic and thus can run many old QBasic programs with only minimal modifications, but FreeBasic has also gone far beyond this and delivers a fairly powerful development environment.</p>
<p>If you do decide to use FreeBasic I recommend downloading a free copy of <a href="http://radasm.cherrytree.at/fbedit/">FbEdit</a> as well. See development usually consists of at least two components &#8211; the compiler and the editor. A compiler is the program that takes your code and turns it into an <a class="zem_slink" title="Executable" rel="wikipedia" href="http://en.wikipedia.org/wiki/Executable">executable program</a> while an editor is what you write the code in. Granted, you can write your code in any plain <a class="zem_slink" title="Text editor" rel="wikipedia" href="http://en.wikipedia.org/wiki/Text_editor">text editor</a> &#8211; but trust me, FbEdit will be a big help.</p>
<p>The <a href="http://www.freebasic.net/forum/">FreeBasic forums</a> have a very friendly and active community that will help you along through the learning process. Just take some time to explore the entire site and community, it is pretty impressive.</p>
<p>All this said, FreeBasic isn&#8217;t the language I primarily use for development &#8211; or the language I would recommend. In general, I&#8217;m a <a class="zem_slink" title=".NET Framework" rel="homepage" href="http://msdn.microsoft.com/netframework">Microsoft .NET</a> guy &#8211; mainly ASP.NET and VB.NET. Microsoft offers free copies of the lite versions of these applications as well, and while I say kudos to the FreeBasic team and hope they keep up the great work, if you are looking for a job in technology, you might be better off starting with a Microsoft .NET technology. Actually, probably C#.NET instead of VB.NET as I do (old habits die hard).</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://oreilly.com/catalog/9780735643383/">Programming Microsoft ASP.NET 4</a> (oreilly.com)</li>
<li class="zemanta-article-ul-li"><a href="http://defenestrationcoding.wordpress.com/2011/03/17/visual-basic-what-is-it/">Visual Basic &#8211; What is it?</a> (defenestrationcoding.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.intomobile.com/2011/04/06/mono-android-now-out-write-android-application-microsofts-net-and-c-languages/">Mono for Android is now out [Write Android application in Microsoft's .NET and C# languages]</a> (intomobile.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=62af2f9d-ac9f-49cc-b900-ceb7f0cccb36" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2011/04/30/freebasic-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft&#8217;s Free Development Tools.</title>
		<link>http://www.daveenjoys.com/2009/09/15/microsofts-free-development-tools/</link>
		<comments>http://www.daveenjoys.com/2009/09/15/microsofts-free-development-tools/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 04:11:12 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ASP.NET Web Matrix]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[QBASIC]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server Express]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=324</guid>
		<description><![CDATA[<p>I remember as a teenager programming for years in <a class="zem_slink freebase/guid/9202a8c04000641f800000000025e844" title="QBasic" rel="wikipedia" href="http://en.wikipedia.org/wiki/QBasic">QBASIC</a> &#8211; a free, lite version of <a class="zem_slink freebase/guid/9202a8c04000641f8000000000078856" title="QuickBASIC" rel="wikipedia" href="http://en.wikipedia.org/wiki/QuickBASIC">QuickBasic</a> <a class="zem_slink freebase/guid/9202a8c04000641f8000000000026344" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> bundled with DOS and early versions of Windows. It was great fun &#8211; but I yearned to get my hands on the [...]]]></description>
			<content:encoded><![CDATA[<p>I remember as a teenager programming for years in <a class="zem_slink freebase/guid/9202a8c04000641f800000000025e844" title="QBasic" rel="wikipedia" href="http://en.wikipedia.org/wiki/QBasic">QBASIC</a> &#8211; a free, lite version of <a class="zem_slink freebase/guid/9202a8c04000641f8000000000078856" title="QuickBASIC" rel="wikipedia" href="http://en.wikipedia.org/wiki/QuickBASIC">QuickBasic</a> <a class="zem_slink freebase/guid/9202a8c04000641f8000000000026344" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> bundled with DOS and early versions of Windows. It was great fun &#8211; but I yearned to get my hands on the full QuickBasic so I could compile my applications and give them to others without giving away all my source code (okay, OSS was barely known back then).</p>
<p>Later I would save for months to purchase <a class="zem_slink freebase/guid/9202a8c04000641f8000000000dafc3d" title="Visual Basic" rel="wikipedia" href="http://en.wikipedia.org/wiki/Visual_Basic">Visual Basic</a> 5. $100+ is a lot of money for a teenager &#8211; but I wanted to program so bad that I scraped and saved.</p>
<p>After that there was the <a class="zem_slink freebase/guid/9202a8c04000641f8000000000320fd7" title="ASP.NET Web Matrix" rel="wikipedia" href="http://en.wikipedia.org/wiki/ASP.NET_Web_Matrix">ASP.NET Web Matrix</a> &#8211; a predecessor to the great tools Microsoft now offers for free. Unfortunately, its development was abandoned and for a long period of time I was left in a painful lurch&#8230;.but then Microsoft started the trend that has made me extremely happy &#8211; free lite development tools.</p>
<p>These development tools include Visual Basic 2008 (for desktop applications), Visual C# 2008 (also for desktop applications, but in C#), <a class="zem_slink freebase/guid/9202a8c04000641f8000000000131543" title="Visual C++" rel="wikipedia" href="http://en.wikipedia.org/wiki/Visual_C%2B%2B">Visual C++</a> (just like the last two), and <a class="zem_slink freebase/guid/9202a8c04000641f800000000039fc6b" title="Microsoft Visual Studio Express" rel="homepage" href="http://msdn.microsoft.com/vstudio/express/default.aspx">Visual Web Developer</a> (for web applications) &#8211; all in the Express line. Additionally they&#8217;ve thrown out there <a class="zem_slink freebase/guid/9202a8c04000641f80000000045cb144" title="SQL Server Express" rel="wikipedia" href="http://en.wikipedia.org/wiki/SQL_Server_Express">SQL Server Express</a> (database back-end) and <a class="zem_slink freebase/guid/9202a8c04000641f8000000000110357" title="Microsoft SQL Server" rel="homepage" href="http://www.microsoft.com/sqlserver">SQL Server</a> Studio Management Studio Express (for writing <a class="zem_slink freebase/guid/9202a8c04000641f8000000000039719" title="SQL" rel="wikipedia" href="http://en.wikipedia.org/wiki/SQL">SQL</a> and managing databases).</p>
<p>While these applications are noted as &#8220;express&#8221; that doesn&#8217;t suggest that they are majorly crippled &#8211; rather they are extremely full functioning applications which can be used to create many impressive applications. For the new, hobbyist, or small business developer many times the Express Editions will be all that you ever need.</p>
<p>This was a smart move on Microsoft&#8217;s part &#8211; it gets people hooked on Microsoft development young &#8211; and it works great for us as well &#8211; because we get free development tools. By the time Microsoft expects us to shell out cash &#8211; well, we are probably making some from our now decent development skills. Go grab yourself some free development applications: <a href="http://www.microsoft.com/express/">http://www.microsoft.com/express/</a>.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e6ba6359-b5ff-41f2-8d2d-75cc4fa00eb2/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=e6ba6359-b5ff-41f2-8d2d-75cc4fa00eb2" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2009/09/15/microsofts-free-development-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.daveenjoys.com/tag/qbasic/feed/ ) in 0.43089 seconds, on Feb 10th, 2012 at 10:12 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 10th, 2012 at 11:12 am UTC -->
