The qbasic tag has no wiki summary.
6
votes
1answer
215 views
Here's an old school IF statement for you, but there is a problem
I have an IF statement in QBASIC... yes... QBASIC...
I have been teaching someone to program (I decided this would be nice and easy to see
how the syntax works).
...Anyway, I have this code:
CLS
...
6
votes
12answers
924 views
Does anyone still program in QBasic / QuickBasic?
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...
5
votes
1answer
185 views
QBasic language spec
I have been challenged by a friend to write a QBasic compiler in QBasic.
Where can I find a language specification for the latest version of the language?
5
votes
2answers
254 views
Looking for the Nibbles game rewritten in C#
I am writing a console app that would be kicking off long running processes. So rather than let the user stare at the screen for several minutes, I'd love to throw my processing on a background ...
4
votes
3answers
262 views
Good books for QBasic beginner? [closed]
I need to find some books dealing with QBasic. Any recommendations?
3
votes
1answer
81 views
Converting Quick BASIC to VB.Net - Random Access Files
I'm trying to convert an old Quick BASIC program to VB.Net. There doesn't appear to be any direct replacement for the old file statements. Building a database seems like overkill for my simple needs.
...
3
votes
7answers
299 views
Two questions for old programmers
So I've been using QBASIC64 today... for old school's sake.
I was wondering:
a) What is the most complex QBASIC code you have ever written was
and
b) What is the most useful code you have written
...
2
votes
1answer
34 views
ATN from QBasic to VB.Net
I am currently translating a program from QBasic to VB.Net and I have this line of code :
RSA = 270 + 180 / PI * (ATN(ABS(X(Z, 2) / X(Z, 1))))
I translated it as
RSA = 270 + 180 / PI * ...
2
votes
0answers
42 views
Limiting the .Net console buffer output area - .Net equivalent of Qbasic's VIEW PRINT statement
Many years ago I used to code in QBasic which had a handy statement - VIEW PRINT (details here) - and it would restrict the console output buffer to a specific clipped area in the console. Console ...
2
votes
2answers
192 views
Is there any freeware QBASIC compatible IDE for BASIC?
What freeware IDE is available other than Visual Basic?
Is there any freeware QBASIC compatible IDE for BASIC?
2
votes
5answers
481 views
2
votes
8answers
1k views
What are the advantages of using Virtual Machine compilation (eg. JVM) over natively compiled languages?
I've heard that the advantage of java is that people can write code, compile it for the JVM, and run it anywhere. Each person just needs a JVM app for their platform.
Of course, it looks similar to ...
1
vote
1answer
150 views
How to Reverse Engineer QuickBasic Application?
I have an application written in QuickBasic (a game). I own the rights to it, but didn't write the original code. I have the source code in front of me, but I'm banging my head a bit in trying to make ...
1
vote
2answers
93 views
What does 8.309618000000001D-02 mean in QBASIC
I have a QBASIC program that basically consists of formulas and constants, and I want to translate the formulas and constants into a C++ programm. Since the formulas are not rocket science and the ...
1
vote
2answers
67 views
Developing a syntax for a language i'm thinking about designing
I'm thinking about desiging a language similar to qbasic in syntax but even simpler so that a new programmer can learn some programming without being discouraged by something like C,C++, or C#. For ...
1
vote
2answers
153 views
Open Files Created with BSAVE in QuickBasic?
I have some files that were created using BSAVE in QuickBasic. I'm wondering how I can load/view these files?
0
votes
0answers
51 views
Is this random number generator able to generate truly random numbers or at least Encryption - secure random numbers?
I have spent years , many years of my life creating this algorythm for generating cryptolologicaly secure random numbers I lost a former versions source code, so I remade it from scratch , this is a ...
0
votes
3answers
73 views
QBASIC: Execution of a GOTO Line if Condition Is Not Met
I am converting GW-BASIC code to C# and have very limited experience in BASIC languages in general. I am trying to understand how IF...THEN...GOTO statements behave. For example, I have the ...
0
votes
1answer
62 views
qbasic version of PHP serialize/unserialize
I can't find this anywhere. I have some old basic programs I am working on (thanks to qb64 that came out, now they work on winxp - win7)
in order to serialize (like php) I need to know how this ...
0
votes
2answers
249 views
QuickBasic 4.5 Gravis Ultrasound Library
I am currently working on a small project in QuickBasic that requires the use of MIDI files.
As the DOS environment I'm using DOSBox 0.74, which provides emulation of the Gravis Ultrasound card.
So ...
0
votes
2answers
66 views
Qbasic, Are # and : operators?
I have a legacy code doing math calculations. It is reportedly written in QBasic, and runs under VB6 successfully. I plan to write the code into a newer language/platform. For which I must first work ...
0
votes
1answer
57 views
Array Not Dimensioned Before
I have the following QuickBasic 4.5 code:
IF LEN(Dir$("mtn.vga")) > 0 THEN
BLOAD "mtn.vga", VARPTR(mtn(1))
I'm trying to port it to FreeBasic but receive the error:
Array not dimensioned, ...
0
votes
1answer
64 views
QBasic crashes immediately after selecting the “open” menu item
Not sure if this is even an acceptable question, but I figured it's an IDE so...
I'm trying to write a small program in qb4.5, which has happily worked on my computer (XP SP3) for a while now. For ...
0
votes
3answers
5k views
How to Read RS232 Serial Port in PHP like this QBasic Program
I'm trying to port the following small QBASIC program (which works 100%) to PHP:
OPEN "com1:2400,n,8,1,DS," FOR RANDOM AS #3
OPEN "data.dat" FOR OUTPUT AS #2
REM read 17 chars from the port
scale$ = ...