The title pretty much sums it up. Is anyone out there still writing in QBasic / QuickBasic?

I have fond memories of learning to program on this platform, but its been such a long time...

link|improve this question
11  
If this is any indication, yours is the only question here tagged "qbasic" or "quickbasic". – Thilo Feb 1 '10 at 3:29
Not anymore... :) – Justin Ethier Nov 4 '10 at 21:14
feedback

12 Answers

up vote 4 down vote accepted

Ahhh... the good old days. I learned QBasic about 12 years ago. It was a good way to get your feet wet. Then migrate over to VB Classic (VB 6).

Edit: Forgot to answer the question. The answer is "yes". There are lots of companies that have legacy app's written in QBasic and refuse to move up in the world. Just like COBOL. Speaking of which, wasn't there supposed to be a .NET variation of COBOL?

link|improve this answer
feedback

Having moved to Windows 7/64, I miss QBASIC. It was very handy for writing little five-minute programs to do calculations that were sufficiently complex that they'd be a nuisance in Calculator, but simple enough to work well with QBasic. For example, how many byte values are there which, went sent over a serial port, would cause the signal line to go low for two bit times at least twice, but never cause it to go low for longer than three? The answer, as it turns out, is 32. Writing such a program in QBASIC, and getting a single .BAS file (in case I decide I need to do something similar within a day or two), is faster and easier than creating a new project in VS2010 and ending up with a whole bunch of directories.

link|improve this answer
feedback

It's not used except in a few school's and to make small programs, like songs, pictures, tables (like multiplication tables), etc. but nothing big or important. It's a good starting program though. :)

link|improve this answer
feedback

It's too bad a lot of programmers these days don't realize the potential of this program when in the hands of someone who understands all the "reserved words", and what you can actually do.

Super programs (like Wii and Xbox video games are not possible because graphics processing of QB are not fast enough (nor could the memory limit of a file hold that much detail!)), but you can duplicate Donkey Kong, Pac-man, Tetris in FULL detail, and color, and speed (like what you would find at those classic stand-up arcade machines).

I know this, because I've done it. I am not saying this to boast; but when others suggest it is limited to small picture, or multiplication tables only, they don't know the program thoroughly. If you want to go advanced for modern use, you WILL have to graduate far beyond the QB program, this I admit, undeniably. But since I program for hobby, (and to keep the brain active at problem-solving), there is no need to learn the modern stuff for me.

If you really want to have fun, try to find a copy of "Watcom Basic" used by some Ontario school boards back in 1990, and learn that old-school language! That was fun (I made the video-game "arkanoid"), and used Watcom basic to make a program to convert Basic to "C", and than converted my program to "C" by running it through itself (DCC OAI Gr 13 major computer semester project -100%)! Compared to now, these programs are COMPLETELY obsolete, and useless, but if you want to push them to their limit, you can!

link|improve this answer
feedback

My first program was in QBasic. So, I would recommend it to people learning to program for the first time. As soon as they get the grasp of it, they should move on to other languages.

link|improve this answer
feedback

I still use Qbasic and create most of my website using it. I use it to generate pages from a database which I plug into a template. In just a few seconds, I have almost 10,000 pages created for an up-to-date website. Check it out at baptistinfo dot com.

I also use it at work to create treatment plans, discharge summaries, and just about anything that is manipulated in text format. Works great for me every day.

link|improve this answer
feedback

I still use it and there are many sites dedicated to it so my answer is yes, just not quite as many people as there once were.

link|improve this answer
feedback

Yes I still use QBasic. In fact I would probably never be able to forget QBasic. I learnt my first programming in Qbasic and i still use it to do my programming task. The new qb64 which runs on windows 7 with wider support to graphics is really cool.

link|improve this answer
feedback

I still use qbasic and so far it is the only language I really know well I have taken some classes in c programming years ago qbasic is a great platform for making quick short programs to do stuff that would be too hard to do on a calculator it is fun to play around with

link|improve this answer
feedback

there are modern tools for learning basic programming. any new aspiring programmers can skip this one.

link|improve this answer
2  
When I learned VB, I found that students who had no previous experience were more 'window painters' than programmers, as opposed to people who had learned languages like qbasic, pascal, or others. We ended up with a whole generation of script kiddies because of it. I suppose it doesn't matter what one starts with, but if you hear someone referring to 'visual basics', you can bet they're on the wrong path. I suppose something like php is easy enough and powerful enough at the same time, but it's important to learn about file formats, sort and search functions (the ones you write yourself), etc – George Sisco Mar 23 '10 at 13:47
@George, that's too objective. Programming can be learned the right way with the right teachers. The objective of the 'Visual' IDE's is to improve programming experience by providing ready-made-tools for developers consumption. If you want to script everything just like what you do before, then we're all programming backwards. If you want to teach logic in programming, you can use Visual products such as C# & VB.net as well. People don't need to go backwards just to learn how to program. – Martin Ongtangco Mar 24 '10 at 1:25
1  
@Martin, well, I don't mean to be too strict. I think clipper helped me understand pointers because it has something similar but not the same called an alias. But I talk to a lot less people who started with visual languages who know the difference between a flat file and a fixed length file. Visual languages make things easy, and I'm glad they exist, but one can complete two courses in VB and never learn input output loop and decision. You'd have a better shot at learning the fundamentals using a straight procedural language is all I'm saying. I'm ok with blaming professors, too. – George Sisco Mar 24 '10 at 17:29
@George, VB is the root of all evil. Microsoft made developers too lazy to code. I'm a C# developer, I can develop an application the lazy way... but I prefer using strict OO Principles and make it scalable as possible. Drag-n-Drop objects are just there to make work faster-- time is money; i use them on Grids, Repeaters, etc. Maybe you should meet more C# & VB.Net developers working in real-world scenarios. – Martin Ongtangco Mar 25 '10 at 3:30
@Martin - who's being too objective? OOP doesn't make code more scalable than functions in a procedural language, and has nothing to do with event driven programming inherently. With .NET syntax, one language is as good as another for learning. This is a side discussion that's more about flag waving. I think you're right that anyone can be a good programmer with a good teacher. You don't find those in a VB class, .net or otherwise. Programming is looked upon as a vocation at too many colleges. Back on topic, I suppose it's a matter of opinion, but 'modern' tools are not 'better' tools. – George Sisco Apr 1 '10 at 14:27
show 1 more comment
feedback

It's easy to pick up a few programming ideas from BASIC, but there are so many pitfalls that develop into bad habits that it's not worth it in the long run. I learned on various BASIC dialects in the first 8 bit computers, but after using C for a few years and trying BASIC again for nostalgia's sake, I was amazed at how limited it was. I remember trying to open a file for reading and checking for errors as I went along, but there was NO error checking beyond the program bombing and saying "Press any key to continue" or some such.

link|improve this answer
Before Visual Basic .NET (which finally added Try Catch), you'd use ON ERROR GOTO or just check your return codes. – Cees Timmerman Mar 28 at 9:27
feedback

I too learned 13+ years ago in MS qbasic, and used it to do things until about 4 years ago, when all my windows boxes had turned to Linux. It was easy and quick to do most anything where you didn't need a mouse or intense graphics. Plotting was a breeze! I dunno everything was so easy, I miss it :-)

link|improve this answer
feedback

protected by Bo Persson Nov 26 '11 at 11:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.