I think I figured it out, and it's really kinda strange. In most cases the label for a GOSUB has to be in the same module or procedure as the GOSUB statement...
I am trying to convert to using SUB/CALL statements, as a former GOSUB/RETURN writer, and I am having limited success; I am having problems with a variable...
Okay, it looks like there are three ways to solve this. You are trying to access varialbles in the subprogram that you have not passed in the argument list....
Okay, it looks like there are three ways to solve this. You are trying to access varialbles in the subprogram that you have not passed in the argument list....
Once you're used to programming that way it's actually nice to have things isolated that way. You can't accidentally change a variable that has nothing to do...
Try this, I hope it can help you, ... From: wulf To: qbasic@yahoogroups.com Sent: Monday, January 05, 2004 9:32 AM Subject: [qbasic] CHAIN Would someone post...
WAN
amirullah@...
Jan 5, 2004 4:17 am
2430
Thanks, I'll try those. ... From: WAN To: qbasic@yahoogroups.com Sent: Monday, January 05, 2004 3:11 PM Subject: Re: [qbasic] CHAIN Try this, I hope it can...
... then use the COMMON SHARED statement at the beginning of your program code or if their only specifically used in that particular sub-routine, then use the ...
... COMMON SHARED only applies to CHAINed programs. It is not necassary for sharing variables between modules. You can just use DIM SHARED for that. I have a...
I am a big fan of QB, probably because I can use it, but in looking back thru earlier messages on this group, I see references to Visual Basic. I know nothing...
You can do a whole lot more with VB than with QB. QB is limmited to dos mode for the most part. VB has a graghic user interface (GUI) that makes it very easy...
I would also add that if you want to get started in VB for free, there are two versions of VB that are free. One is the old VB2 (a light version) and the other...
Excellent advice, thank you. I guess a good starting point is a VB beginners group in this forum. ... From: Randy Keeling To: qbasic@yahoogroups.com Sent:...
Thanks for that. ... From: con-boy13@... To: qbasic@yahoogroups.com Sent: Thursday, January 08, 2004 1:41 PM Subject: Re: [qbasic] VB vs QB You can do a...
Let us not forget VB for MSDOS. It's just as unsupported by M$, and is avaliable on the web as "abandonware" for prices from free (for download) to $$$ for...
For my first post I wanted to discuss, though I wouldn't blame anyone for not replying, a dumb idea I had when I first started out with programming and had to...
No not script as in scripting like making your own language but script as in monologue and dialogue for actors and highschool or college speech teams. I'm...
So uh... what is the best program to download for beginners in programming? Come on tell me the best and most easy to learn, use and proceed program (program...
There is no 'best' programming language. If you have a good teacher, any language can be easy to learn. Before anyone can give you advice as to what language...
Well, let's say that i want own website, games for sale and online games for webste customers, users and visitors, what do you say? No teachers at the moment...
If you want to do on-line games and web stuff, I would recommend JAVA. It is free as well (go to Sun's website for the tools and tutorials to get you started)....
QBasic only seems to give a limited amount of colors (somewhere in the 200's). I have a Paint program that gives all the way to 255/255/255 for RGB. Are...
I scanned some pictures onto my computer that I want to put into a QBasic program. Is there any way to cut and paste into QBasic? If not, do you know any...
There are methods for that yes. In fact I believe using interrupts and such you can get a screen with millions of colors and 1024*763 screen size but ususally...
How do you mean? Do you want to be able to display them while the program runs, or just for design in the code? No there is no cut and paste method for...
Acuatly check out the web site http://www.fys.ruu.nl/~bergmann/basic.html. It tells you how to read from and write to the text screen directly, and how to show...