Qb64
QBASIC/QB64 program code
Install / Use
/learn @pramnora/Qb64README
QB64 CODE - (QBASIC/QuickBASIC)
Document last modified: Wed 6th Aug 2025 13:23 PM GMT
Table Of Contents:-
1.00 - PREFACE: Explaining this page contents...
1.01 - Multiple different BASIC programming language versions
1.02 - LINKS
1.00 - PREFACE: Explaining this page contents...
Here you will find...
- CODE REPOSITORY: QB64 example codes/programs; all of which you can freely download, and, practice studying/learning from.
On this page itself, I've included...
- CODE: Comparing the many different BASIC programming language versions
- LINKS: Where you can both find/download a FREE copy of QB64; as well as, various online resources to QB64 programming tutorials.
- PICS: Included are some actual QB64 screenshot printouts...; so you can actually get to see what the QB64 IDE/Integrated Development Environment looks like.
NOTE: All resources which you see here...including program code/screenshot printouts/this ReadMe document explanatory page were created by me, alone; and, without any outside help from others.
1.01 - Multiple different BASIC programming language versions
Original BASIC
10 CLS
20 PRINT "Hello, world!"
30 END
Modern BASIC
CLS
PRINT "Hello, world!"
END
VB6/(Visual BASIC 6)
txtMessage.Value = "Hello, world!" ...or,... Debug.Print("Hello, world!")
VBScript/(Visual BASIC Script)
MsgBox("Hello, world!") ...or,... document.write "Hello, world!"
VB.Net/(Visual BASIC.Net)
Console.Clear() Console.WriteLine("Hello, world!") Console.ReadLine()
...thus, as you can see from the above example codes; my education in learning how to use the BASIC family of programming languages does remain a constantly ongoing task.
1.02 - LINKS
QBASIC History
History Article: Time Magazine
- https://time.com/69316/basic/
Wikipedia article: QBASIC history/code/further links/-etc.
- http://en.wikipedia.org/wiki/QBasic
QBASIC 64/(Download link)
- http://www.qb64.net/ (Link not working?!)
- http://www.qb64.org
- https://www.softpedia.com/get/Programming/Coding-languages-Compilers/QB64.shtml
** Linux Setup..
- https://github.com/QB64Team/qb64
- https://github.com/QB64Team/qb64/releases
(NOTE: Once downloaded, compile QB64 with: ./setup_lnx.sh)
QB64.com
- https://qb64.com/
- https://qb64.com/gx.html
- https://qb64.com/qbjs.html
- https://qb64.com/galleon.html
QBASIC Tutorials
- http://www.petesqbsite.com/
- http://stevehanov.ca/blog/index.php?id=92
- http://chortle.ccsu.edu/QBasic/index.html
QBASIC Tutorial Series (1st of 58)
https://www.youtube.com/watch?v=hE-Voij5k5Q&list=PLF6199808BD4901E1
InForm Designer/(OOP UI for QB64)
Download InForm Designer
- https://flysoftware.com/products/inform Creating a simple program with InForm for QB64 - Tic Tac Toe
- https://www.youtube.com/watch?v=L9FmJBN4_SQ
