Search found 10 matches

by irascib1e
Wed Oct 11, 2006 9:36 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

Ok, I fixed that problem. I revised your game on your tutorial, Lurah. (by the way, I did this ALL without looking at anything else in the backround. YAY ME!!) One thing I was wondering. Is it possible to put a loop inside another loop? I wanted to put the diceroll loop inside the game loop, so befo...
by irascib1e
Wed Oct 11, 2006 4:39 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

Lurah, I tested myself to try to remake the game on your tutorial :P It dosen't work though. Nothing prints after you input you guesses. Any help? I looked the code over a few times and compared it with the one on your tutorial and I didn't find any reason why it should not work. rounds = 0 points =...
by irascib1e
Mon Oct 09, 2006 7:23 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

Whoa, that helped me so much.

Thanks guys, you're all being a great help right now :D
by irascib1e
Mon Oct 09, 2006 3:54 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

I understand everything except for this:

Code: Select all

input a$
IF a$ = "y" then
   Print "yes"

ELSEIF a$ = "n" then
   print "no"

ELSE
   print "either"
ENDIF
sleep
The whole IF ELSEIF ELSE thing dosen't make sense to me :/
by irascib1e
Sun Oct 08, 2006 8:26 pm
Forum: General Discussion
Topic: Computer acronyms
Replies: 9
Views: 16944

DOS

Dead and Overweight Soap.
by irascib1e
Sun Oct 08, 2006 6:06 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

I'm very confused with strings, as to what they are : / Also, this: For Counter = 5 TO 1 LOCATE 6, 1 : Print Counter SLEEP 1 Next Counter Didn't work :/ I might just be doing something wrong though, did I enter it right? 1 CLS COLOR 14, 0 LOCATE 5, 1: PRINT "This program will tell you age diffe...
by irascib1e
Sun Oct 08, 2006 5:03 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

I'm going off your tutorial :D 1 CLS COLOR 14, 0 LOCATE 5, 1: PRINT "This program will tell you age differences between you and your family members." LOCATE 6, 1: PRINT "5" SLEEP 1 LOCATE 6, 1: PRINT "4" SLEEP 1 LOCATE 6, 1: PRINT "3" SLEEP 1 LOCATE 6, 1: PRIN...
by irascib1e
Sun Oct 08, 2006 11:24 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

^ thanks : D by the way, how do you clear only a line in a command, but not the whole screen? __________ Example: PRINT "Hello, how are you?" PRINT "Would you like some tea?" ___________ How would I clear "Hello, how are you?" without clearing "Would you like some ...
by irascib1e
Sun Oct 08, 2006 10:26 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

Thank you :)
by irascib1e
Sat Oct 07, 2006 10:13 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29359

Searching help.

For starters, I'm very new with QBasic. In my school (I'm a sophmore in high school) I signed up for a computer programing class. We are learning about QBasic, and we are doing code in it. We are learning how to do very simple things though, like making programs that calculate GPA's and batting aver...