Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a IDE that allows me to compile/run/debug BASIC code.

Also wondering if I can "upgrade" basic code to Visual Basic 6.

Any help is appreciated!!

share|improve this question
Do you mean VB, or the old line-numbered, unstructured programming BASIC? – Chris Upchurch Sep 16 '08 at 0:15
JustBasic... And you can usually switch code over to VB fairly easy... the plus is they might help you with the process in the JB forums. – Kat Cox Jan 17 at 21:25

closed as not constructive by casperOne Oct 26 '12 at 17:36

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

up vote 7 down vote accepted

It's been a while, but QBasic was pretty amazing. It was a real step up from the BASIC that shipped with the Tandy 1000, except for missing some sound features. I spent many hours typing in programs from books and magazines when I was cutting my programming teeth.

Visual Basic was awesome too. It was very easy to throw up a Windows application without really knowing what you were doing.

(Can I borrow the time machine when you are done with it? ;-)


The above answer was intended as a joke. However, the joke hinges on the fact that BASIC is is pretty long-in-the-tooth and rarely seen in the wild. As Dustin, jsumners, and Brad Kaenel point out, there are still actively developed tools to work with BASIC. So keep reading! --->

share|improve this answer
This wasn't meant to be a serious answer. I think it would be better to pick one of the other two answers if they helped or leave all of the answers unaccepted if they didn't. I'm tempted to remove this answer so it won't be at the top of the answer stack any more. – Jon Ericson Sep 19 '08 at 20:09
It's the first accepted answer with negative points I see... – jmfsg Sep 19 '08 at 20:32
Naughty... but you made my day :D – Manrico Corazzi Sep 19 '08 at 20:43
This is so funny that I can't stop laughing... (the whole mess) – Andrei Rinea Sep 19 '08 at 20:43
5  
I don't get the joke... QBasic was the Python of its era. Easy, fun, powerful, and with great inbuilt docs. The last compiler version, PDS, was an awesome development tool as far as DOS was concerned. No question that it's long out of date, but so is actually having fun tinkering with your PC. :( – Artelius Oct 31 '08 at 1:33
show 3 more comments

If you're looking for a modern, IDE/Compiler that supports the syntax-family of GW-BASIC/QBASIC, go directly to PowerBASIC. link text They have four compilers: FirstBASIC and PowerBASIC for DOS (yes, DOS), PowerBASIC for Windows (GUI), and PowerBASIC Console (Windows character-mode). Great stuff from a company that's been around a long time, and still remembers what customer service is.

For the more modern VB syntax-family go with Microsoft's product line, or check out RealBASIC (link text Another solid product from a solid company, and you even get cross-platform support for Windows, MacOS, and Linux.

share|improve this answer

Purebasic

My favorite language for small tools - extensive libraries, native compilation and even x64 support ;-). The syntax is a mixture of Visualbasic, Pascal and C. Not free but very cheap!

share|improve this answer

There's always VB.net (Visual Basic .NET). You can get it for free from Microsoft.

Link

share|improve this answer
I'm not really sure that's the same thing... – Jon Ericson Sep 23 '08 at 15:59

If you're considering "upgrading" to VB6, then your BASIC code must be pretty old!

Anyway, another option to seriously consider is REALbasic. It's an easy-to-use, fully object-oriented version of BASIC and a great alternative to VB6.

share|improve this answer

RealBasic is probably the best of the Basic Variants. There are several VB6 to Realbasic conversion tools, and as far as OOP goes, RealBasic is right up there. Not to mention cross-platform capability, full debugger, introspection, plug-in capabilities, etc, etc.

share|improve this answer

There is the FreeBASIC compiler and the FBIde (FreeBASIC IDE).

In answer to your second question (isn't that frowned upon?), BASIC is not the same thing as Visual Basic. So you would not be able to just copy and paste BASIC code into a VB6 project. If you want to write VB6 programs then you should start with VB6.

share|improve this answer

Heh .. I've been fooling around with Microsoft's Small Basic. Very lightweight, hardly what I'd call an IDE -- but sorta cute & fun. Maybe good for beginners. Not an answer to your question really but thot I would put out the link anyway...

share|improve this answer
I checked it out for a friend who wanted to get his kid into programming, but the tutorial advocates goto, which I just can't approve of. – TheMissingLINQ Mar 18 '09 at 17:37

As you can see from the other answers there are still many variations and tools for BASIC. The language implementations are similar, not the same. Visual Basic is not "BASIC", I like VB but it is not any kind BASIC. Back when I wrote in QBasic I could use a GW-Basic manual for guidance but the two certainly did not match up feature to feature. There are language elements common to most BASICs, BASIC is a family not a specific set of rules.

share|improve this answer

Another option people might consider is NS Basic.

It comes in a variety of "flavors" tailored to specific platforms, but does not pretend to be cross-platform due to the nature of the platforms:

  • NS Basic/Desktop (Windows)
  • NS Basic/CE (Windows Mobile, CE)
  • NS Basic/Palm
  • NS Basic/Symbian (Nokia)

The Desktop (Windows) edition is actually an IDE and script host for VBScript. Unlike WSH it offers GUI forms with a designer in the IDE. The host object model offers methods for things difficult to achieve in VBScript otherwise. One example is the ability to make standard DLL calls including many Win32 API calls.

The "compiled" product is an EXE. There is strong compatibility with WSH in its non-GUI project type, allowing many WSH scripts to be "compiled" and deployed as an .EXE instead of as .VBS or .WSF source files.

Because of its use of VBScript the Desktop edition is easy for a VB6 programmer to pick up.

share|improve this answer

I don't personally know anything about Basic, but I once stumbled across references to Gambas, which looks like a Basic IDE for Linux.

From the website :

I want to clear up any misunderstanding immediately. Gambas does not try to be compatible with Visual Basic, and will never be. I'm convinced that its syntax and internals are far better than the one's of its proprietary cousin ;-)

I took from Visual Basic what I found useful : the Basic language, the development environment, and the easiness to quickly make programs with user interfaces. That's all. I could have chosen the syntax of almost any other language, but I was fed with Basic from childhood, so...

Don't look at me like that. He never actually said he was looking for a Windows-based solution.

share|improve this answer

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