Difference between revisions of "QuickBASIC"

From TheAlmightyGuru
Jump to: navigation, search
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''''QuickBASIC''''' is a programming language developed by [[Microsoft]] and first released in 1985. It began solely as a BASIC compiler, but grew into a full Integrated Development Environment with compiler, linker, and extensive help and example programs. Several versions were released but the most popular release was 4.5. [[MS-DOS]] 5.0 and greater came with a crippled version of QuickBASIC 4.5 called QBASIC which didn't include the compiler or linker. QuickBASIC code compiled into machine code and could be run in 16-bit DOS without needing to include run times. The last official build of QuickBASIC was 4.5, but a version of 7.1 was released under the name Microsoft BASIC Professional Development System, although it was essentially the same program.
+
[[Image:QuickBASIC - DOS - USA.jpg|thumb|256x256px|QuickBASIC.]]
 +
 
 +
'''''QuickBASIC''''' is a [[BASIC]] programming language developed by [[Microsoft]] derived from their earlier [[GW-BASIC]] titles, and first released in 1985. It began simply as a BASIC compiler, but by its final version it had grown into a full integrated development environment (IDE) with compiler, linker, and extensive help and example programs. Several versions were released but the most popular release was 4.5. [[MS-DOS]] 5.0 and greater came with a crippled version of QuickBASIC 4 called QBASIC which didn't include the compiler or linker. QuickBASIC code compiled into machine code and could be run in 16-bit DOS without needing to include run times. The last official build of QuickBASIC was 4.5, but a version of 7.1 was released under the name Microsoft BASIC Professional Development System, although it was essentially the same program.
  
 
As Microsoft began to focus more and more on [[Windows 3]], it ceased development for DOS-based programming languages and created [[Visual BASIC]]. Command-line BASIC continues to see some development with languages like [[FreeBASIC]] and [[QB64]].
 
As Microsoft began to focus more and more on [[Windows 3]], it ceased development for DOS-based programming languages and created [[Visual BASIC]]. Command-line BASIC continues to see some development with languages like [[FreeBASIC]] and [[QB64]].
  
I learned how to program primarily in QuickBASIC.
+
The majority of my formative programming learning was done using QuickBASIC. I have probably spent over 1,000 hours playing around with QuickBASIC over the years, the majority of my time was spent writing games that I never finished.
 +
 
 +
==Reviews==
 +
===Good===
 +
* The program isn't just a compiler, it's a full-fledged IDE.
 +
* The IDE automatically refactors functions to be all uppercase and fixes variables to match the case when you change them.
 +
* The IDE runs single-line compiling whenever you move the cursor off a line so you notice bugs right when the happen.
 +
* The program comes with a linker as well to import libraries from other languages.
 +
 
 +
===Bad===
 +
* Program execution is especially slow. Without resorting to assembly libraries, you won't be able to write any programs that rely heavily on graphics or sound.
 +
* The Screen command doesn't let you specify screen modes directly, instead it gives you the closest equivalent. For example, if you set the screen to 0, you will get different resolutions and features if the PC on which you're running has monochrome, [[Color Graphics Adapter|CGA]], or [[Enhanced Graphics Adapter|EGA]] display.
 +
 
 +
===Ugly===
 +
* The compiler can't compile BASIC files over 640K. You can use the linker to make larger EXEs, but it becomes a pain.
 +
 
 +
==Download==
 +
* [[Media:QuickBASIC (Multiple Versions).zip|Download]] ([[:File:QuickBASIC (Multiple Versions).zip|Info]]) - Several different versions of QuickBASIC and QBASIC.
 +
 
 +
==Gallery==
 +
<gallery>
 +
QuickBASIC - DOS - Screenshot - v4.5 Title.png|QuickBASIC v4.5 IDE.
 +
QuickBASIC - DOS - Screenshot - Code.png|Source code.
 +
QuickBASIC - DOS - Screenshot - Help.png|Internal help example.
 +
QuickBASIC - DOS - Screenshot - Sort Demo.png|Sorting demo.
 +
QuickBASIC - DOS - Screenshot - Mandelbrot.png|Mandelbrot example.
 +
QuickBASIC - DOS - Screenshot - Torus.png|Torus example.
 +
QuickBASIC - DOS - Screenshot - Gorillas.png|MS-DOS 5 included game: [[QBASIC Gorillas]].
 +
QuickBASIC - DOS - Screenshot - Nibbles.png|MS-DOS 5 included game: [[QBASIC Nibbles]].
 +
</gallery>
  
 
==Links==
 
==Links==
 
* [https://en.wikipedia.org/wiki/QuickBASIC en.wikipedia.org/wiki/QuickBASIC] - Wikipedia.
 
* [https://en.wikipedia.org/wiki/QuickBASIC en.wikipedia.org/wiki/QuickBASIC] - Wikipedia.
 +
  
 
[[Category: Software]]
 
[[Category: Software]]
 
[[Category: Programming Languages]]
 
[[Category: Programming Languages]]

Revision as of 15:14, 2 July 2018

QuickBASIC.

QuickBASIC is a BASIC programming language developed by Microsoft derived from their earlier GW-BASIC titles, and first released in 1985. It began simply as a BASIC compiler, but by its final version it had grown into a full integrated development environment (IDE) with compiler, linker, and extensive help and example programs. Several versions were released but the most popular release was 4.5. MS-DOS 5.0 and greater came with a crippled version of QuickBASIC 4 called QBASIC which didn't include the compiler or linker. QuickBASIC code compiled into machine code and could be run in 16-bit DOS without needing to include run times. The last official build of QuickBASIC was 4.5, but a version of 7.1 was released under the name Microsoft BASIC Professional Development System, although it was essentially the same program.

As Microsoft began to focus more and more on Windows 3, it ceased development for DOS-based programming languages and created Visual BASIC. Command-line BASIC continues to see some development with languages like FreeBASIC and QB64.

The majority of my formative programming learning was done using QuickBASIC. I have probably spent over 1,000 hours playing around with QuickBASIC over the years, the majority of my time was spent writing games that I never finished.

Reviews

Good

  • The program isn't just a compiler, it's a full-fledged IDE.
  • The IDE automatically refactors functions to be all uppercase and fixes variables to match the case when you change them.
  • The IDE runs single-line compiling whenever you move the cursor off a line so you notice bugs right when the happen.
  • The program comes with a linker as well to import libraries from other languages.

Bad

  • Program execution is especially slow. Without resorting to assembly libraries, you won't be able to write any programs that rely heavily on graphics or sound.
  • The Screen command doesn't let you specify screen modes directly, instead it gives you the closest equivalent. For example, if you set the screen to 0, you will get different resolutions and features if the PC on which you're running has monochrome, CGA, or EGA display.

Ugly

  • The compiler can't compile BASIC files over 640K. You can use the linker to make larger EXEs, but it becomes a pain.

Download

  • Download (Info) - Several different versions of QuickBASIC and QBASIC.

Gallery

Links