Search found 12 matches

by SCC
Mon Mar 22, 2010 6:14 pm
Forum: News and Announcements
Topic: fake admin
Replies: 17
Views: 72940

Dunno if this ties into the problem or not, but i just got an email saying i had a private message and when i checked there was nothing there...which i thought was weird anyway since i haven't used this account for almost 3 years. :?:
by SCC
Fri Feb 02, 2007 12:19 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need some TIMER help
Replies: 5
Views: 11921

wow cool :) Thnx for all the help. I put all 3 of these in one file so they run one after another, lol.
by SCC
Sun Jan 28, 2007 11:59 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Need some TIMER help
Replies: 5
Views: 11921

Yeah...that works, but i think the tut author wanted it to be done just by the TIMER command. But i'm too frustrated with it to keep trying. SLEEP is the only way i could figure it out, too, so that's what he's getting, lol.
I need to move on to more tuts and start learning some cool stuff.
by SCC
Sat Jan 27, 2007 8:33 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need some TIMER help
Replies: 5
Views: 11921

Need some TIMER help

I'm still working on the QBasic Bootcamp tut series, and on section 7, it says i need to count from 1 to 10 by printing the numbers 1 every second using the timer command and a for/next loop. Well...i've tried several times, and i can't figure it out. What i have here should work, i see no reason wh...
by SCC
Fri Jan 05, 2007 10:45 pm
Forum: General Discussion
Topic: Old school 80's program
Replies: 7
Views: 16272

OMG, the stud one was the other one i had! That was the one i really wanted to try and recode, but unfortunatly, that was the one i lost. :(

also, the cookie factory sounds awsome! :)
by SCC
Sat Dec 30, 2006 3:37 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need Help with File I/O
Replies: 2
Views: 6199

Well, i figured it out. Can't use files, so i just went ahead and stored the numbers in variables and printed them out that way. :\

Now i just need to clean it up, possibly make a few subs, and then i should have a decent lookin program. :)
by SCC
Fri Dec 29, 2006 11:25 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need Help with File I/O
Replies: 2
Views: 6199

Need Help with File I/O

So...i got to page 5 in the Qbasic BootCamp tut series, and i had a great idea for one of the little "assignments" at the end. It was a guess the number game, and i'm almost finished. But i ran into a problem... I've been trying to get this right for about 3 hours straight now, and i just ...
by SCC
Mon Dec 25, 2006 7:34 pm
Forum: General Discussion
Topic: Old school 80's program
Replies: 7
Views: 16272

Old school 80's program

I was digging through some old papers and found a page from a very old 3-2-1 Contact magazine (early 80's i think). It was a Basic Training section they put in at the end that had games to type out and try. I thought it would be cool to post it here for everyone, lol. It doesn't work very well, and ...
by SCC
Sun Dec 10, 2006 9:56 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Reading from Files?
Replies: 7
Views: 16643

All i originally wanted to do was make one of those graphical text adventure games, like the one in that movie 'Big', but i guess i'll be in it for the long haul and learn to make something worthwhile. :)
by SCC
Sat Dec 09, 2006 4:47 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Reading from Files?
Replies: 7
Views: 16643

I'd rather keep learning in Qbasic for the moment at least, this is the first time i'm actually retaining all this info and getting some programs working.


Anyways, I figured it out :D '$INCLUDE: 'code.txt'

Guess it's a library command, but it worked pretty good here, hehe.
by SCC
Sat Dec 09, 2006 2:36 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Reading from Files?
Replies: 7
Views: 16643

Reading from Files?

I've been working with the Qbasic BootCamp tut series, and i've read 4 pages and did the assignments. Now i'd like to take a break from learning and try to use some of it on a project. One problem i had from the start is reading from files. From what the tut says, i can only read one line, or read n...
by SCC
Fri Dec 01, 2006 5:58 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: basic BASIC
Replies: 2
Views: 9499

I just threw this together in a few mintues, don't know if it's what you wanted or not...I don't have much experience yet, but this seemed simple enough...plus it's about all i know how to do at the moment, lol. CLS SCREEN 7 RANDOMIZE TIMER FOR X = 1 TO 3 R1 = INT(RND * 150) R2 = INT(RND * 100) R3 =...