Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Literature about QuickBasic
#1
If you're interested: The QuickBasic 2.5 2nd Edition manual can be downloaded here: The QuickBasic 2.5 2nd Edition manual

And here: The Waite Group's Microsoft QuickBASIC Bible

I just bought this book (antique and in German of course). Anyway, the author is good. If the book is as good as the description. . .
QBasic. Das Kompendium. Zur Einführung und zum Nachschlagen Gebundene Ausgabe
Reply
#2
(02-29-2024, 01:41 AM)Kernelpanic Wrote: If you're interested: The QuickBasic 2.5 2nd Edition manual can be downloaded here: The QuickBasic 2.5 2nd Edition manual

And here: The Waite Group's Microsoft QuickBASIC Bible

I just bought this book (antique and in German of course). Anyway, the author is good. If the book is as good as the description. . .
QBasic. Das Kompendium. Zur Einführung und zum Nachschlagen Gebundene Ausgabe

I have a copy of the Microsoft QuickBasic Bible I purchased new back in the 90's. A very good book, every QB64 programmer should have it.
New to QB64pe? Visit the QB64 tutorial to get started.
QB64 Tutorial
Reply
#3
As long as we're talking about Quickbasic references and such, I recommend this link: https://hwiegman.home.xs4all.nl/qb45-man/index.html

It's the whole Quickbasic 4.5 Help File online with easy to reference layout and links!  What more could someone want?
Reply
#4
here's one i found quite useful

https://qb64forum.alephc.xyz/index.php?t...#msg140282
Reply
#5
(02-29-2024, 05:47 AM)vince Wrote: here's one i found quite useful

https://qb64forum.alephc.xyz/index.php?t...#msg140282

No files there @vince -- get the latest version from our forums here: https://qb64phoenix.com/forum/showthread.php?tid=169
Reply
#6
I thought I had a book called QBasic for Dummies, but then I realized it was just an email to Clippy.

Pete
Reply
#7
TO Clippy, or FROM Clippy?
Reply
#8
I received the book “QBasic Compendium” mentioned today. As expected, a very good book.
I also looked at the section, where is the difference between static and dynamic is explained well again (there are always problems there).

ERASE deletes an array. However, this deletion is different depending on whether it is a static or dynamic array.
When applied to a static arrayx, ERASE simply assigns a value of 0 to all elements. That is, it reinitializes the array and deletes all elements in it.

If ERASE applied to a dynamic array does not delete the values of the array, but the array itself. It is completely removed from memory and then no longer exists. It's just not there anymore, as if it never existed.
(Some people had problems with that.)  Tongue
Reply
#9
(02-29-2024, 04:55 AM)SMcNeill Wrote: As long as we're talking about Quickbasic references and such, I recommend this link: https://hwiegman.home.xs4all.nl/qb45-man/index.html

It's the whole Quickbasic 4.5 Help File online with easy to reference layout and links!  What more could someone want?
I was just reading through the site.

I didn't know QuickBasic supported line continuation (the underscore _ character). I thought that was something added by Galleon. Man that would have been helpful back in the day. I wonder why no one used it? (Well at least in all the sample code I came across).
New to QB64pe? Visit the QB64 tutorial to get started.
QB64 Tutorial
Reply
#10
Quote:@Terry -  I didn't know QuickBasic supported line continuation (the underscore _ character).
The text in the QuickBasic 4.5 manual says the following: In the QB4.5 editor a line can only be 256 characters long; the editor does not recognize (accept) an underscore to continue the line.
It's different when using another editor. In this case, the underscore is removed at compile time and the continued lines are merged into one line. In this case, the line length limit is lifted.

Underscores are not continued in DATA and REM statements under any circumstances.

[Image: Line-length-in-Basic.jpg]
Reply




Users browsing this thread: 8 Guest(s)