Search the web
Sign In
New User? Sign Up
qbasic · This is a Discusion List for all QuickBasic and QBasic Programmers. Need to learn qb this is the list for you!
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2421 - 2450 of 4379   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2421
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...
Tom Curley
lensguy2000
Offline Send Email
Jan 3, 2004
4:17 am
2422
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...
Matthew Link
mal7798
Offline Send Email
Jan 3, 2004
9:56 pm
2423
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....
Tom Curley
lensguy2000
Offline Send Email
Jan 4, 2004
3:10 am
2424
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....
Matthew Link
mal7798
Offline Send Email
Jan 4, 2004
8:36 am
2425
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...
Tom Curley
lensguy2000
Offline Send Email
Jan 4, 2004
3:22 pm
2426
Hi Tom, Thanks a lot. It is working well. Best Regards Wan ... From: "Tom Curley" <tcurley@...> To: <qbasic@yahoogroups.com> Sent: Saturday,...
WAN
amirullah@...
Send Email
Jan 4, 2004
5:37 pm
2427
Glad I could help. I can't believe I'm the expert around here on QB programming. ... ~Tom...
Tom Curley
lensguy2000
Offline Send Email
Jan 4, 2004
5:58 pm
2428
Would someone post an example of how this command works within a file?...
wulf
wulfwulf
Offline Send Email
Jan 5, 2004
2:31 am
2429
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@...
Send Email
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...
wulf
wulfwulf
Offline Send Email
Jan 5, 2004
7:04 am
2431
... 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 ...
daniel quinones
dansfoundati...
Offline Send Email
Jan 5, 2004
5:34 pm
2432
Is there a way to find the RGB from QBasic?...
joshua_ulriksen
Offline Send Email
Jan 6, 2004
10:53 pm
2433
... 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...
someone42_000
Offline Send Email
Jan 7, 2004
3:35 am
2434
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...
wulf
wulfwulf
Offline Send Email
Jan 8, 2004
12:56 am
2435
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...
con-boy13@...
bander_87
Offline Send Email
Jan 8, 2004
2:42 am
2436
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...
Randy Keeling
randy_keeling
Offline Send Email
Jan 8, 2004
3:01 am
2437
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:...
wulf
wulfwulf
Offline Send Email
Jan 8, 2004
6:35 am
2438
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...
wulf
wulfwulf
Offline Send Email
Jan 8, 2004
6:36 am
2439
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...
JCBass Player
jcbassman
Offline Send Email
Jan 8, 2004
12:15 pm
2440
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...
talin1_us
Offline Send Email
Jan 8, 2004
2:18 pm
2441
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...
talin1_us
Offline Send Email
Jan 8, 2004
2:27 pm
2442
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...
The Mysterious
playersamfi
Offline Send Email
Jan 8, 2004
5:01 pm
2443
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...
Randy Keeling
randy_keeling
Offline Send Email
Jan 8, 2004
5:20 pm
2444
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...
The Mysterious
playersamfi
Offline Send Email
Jan 8, 2004
5:31 pm
2445
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)....
Randy Keeling
randy_keeling
Offline Send Email
Jan 8, 2004
5:49 pm
2446
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...
joshua_ulriksen
Offline Send Email
Jan 8, 2004
7:00 pm
2447
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...
joshua_ulriksen
Offline Send Email
Jan 8, 2004
7:02 pm
2448
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...
talin1_us
Offline Send Email
Jan 8, 2004
9:10 pm
2449
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...
talin1_us
Offline Send Email
Jan 8, 2004
9:15 pm
2450
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...
con-boy13@...
bander_87
Offline Send Email
Jan 8, 2004
11:38 pm
Messages 2421 - 2450 of 4379   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help