Is anyone currently using QBasic? I was just curious. I did a few searches and it seems to have made a bit of a comeback, in some sense.
I'm making this, although it isn't QB. I thought I might post it anyway.
Search found 166 matches
- Sat Sep 08, 2007 2:39 am
- Forum: QBasic / QuickBasic related
- Topic: Qbasic slow execution speed
- Replies: 11
- Views: 6183
There is also a program by Plasma, called EMS Magic. Check out http://phatcode.net for a download. I'm not sure if it will help or not, but it's worth a shot. He didn't write that program for nothing ya know! :p As for porting it to FreeBASIC, sure it will be a lot faster and compatible with more ma...
- Sun Aug 12, 2007 10:59 pm
- Forum: QBasic / QuickBasic related
- Topic: Story-driven Baloon Fight with guns :|
- Replies: 13
- Views: 2968
- Sun Aug 12, 2007 7:36 am
- Forum: QBasic / QuickBasic related
- Topic: Story-driven Baloon Fight with guns :|
- Replies: 13
- Views: 2968
Hi. I can't run QB on this pc, so I'd like to try it wth a different compiler, if you don't mind. Can you post it as a text file somewhere? You can always use this site to post your code:
http://copy-pasta.com/
Thanks and have fun!
http://copy-pasta.com/
Thanks and have fun!
- Sun Feb 11, 2007 2:04 am
- Forum: QBasic / QuickBasic related
- Topic: Qbasic game controls
- Replies: 6
- Views: 2043
- Sat Jan 20, 2007 7:05 am
- Forum: QBasic / QuickBasic related
- Topic: Use of GOTO
- Replies: 14
- Views: 3278
- Sat Jan 20, 2007 5:33 am
- Forum: QBasic / QuickBasic related
- Topic: Use of GOTO
- Replies: 14
- Views: 3278
- Sat Jan 20, 2007 12:01 am
- Forum: QBasic / QuickBasic related
- Topic: Use of GOTO
- Replies: 14
- Views: 3278
Sure. ;) This is an example of what I mean by heavy recursion. See how the floodfill sub calls itself? It overloads the stack very, very fast. Try increasing the radius of the circle. It should run in QB, but I can't be positive. I wrote the code using FB with the -lang QB switch. Please tell me if ...
- Fri Jan 19, 2007 9:02 am
- Forum: QBasic / QuickBasic related
- Topic: Use of GOTO
- Replies: 14
- Views: 3278
- Fri Jan 19, 2007 8:52 am
- Forum: QBasic / QuickBasic related
- Topic: I need a sorting algorythm
- Replies: 6
- Views: 1890
- Sat Dec 30, 2006 6:41 am
- Forum: QBasic / QuickBasic related
- Topic: I need a sorting algorythm
- Replies: 6
- Views: 1890
Hmmm... Do you mean you have different fields stored in a linear fashion within the same array? Anyway, the easiest type of sort to learn, is the bubble sort. It's basically like this... Dim Array(20) As Integer For i = LBound(Array) To UBound(Array) y=y+1 Array(i) = Int(Rnd*1000) Print Array(i) Nex...
- Mon Oct 03, 2005 8:50 am
- Forum: QBasic / QuickBasic related
- Topic: First program problem.
- Replies: 3
- Views: 1115
- Sun Oct 02, 2005 9:28 pm
- Forum: QBasic / QuickBasic related
- Topic: First program problem.
- Replies: 3
- Views: 1115
- Fri Aug 19, 2005 7:46 am
- Forum: QBasic / QuickBasic related
- Topic: compiler problem - "expression too complex"
- Replies: 5
- Views: 1671
- Fri Aug 19, 2005 7:40 am
- Forum: QBasic / QuickBasic related
- Topic: Array Issues
- Replies: 2
- Views: 1156
I wouldn't reccomend using DATA statements on the fly, but it sounds like you could just use RESTORE...
See how it works?
Code: Select all
Do
RESTORE MyData
For i = 1 to 2
Read Temp
Print Temp
Next
Loop Until Inkey$=Chr$(27)
MyData:
DATA 25338
DATA 17475