Search found 394 matches

by Patz QuickBASIC Creations
Tue May 16, 2006 4:56 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need a PLAY code... (read to find out which one)
Replies: 29
Views: 44030

I'm reviving the dead!!!

I recently remembered one game I heard it in!
Anyone remember the King's Quest series? Whenever you died, you would hear that music that I want! I need the PLAY code for it! I MUST HAVE IT! (starts foaming at the mouth)
by Patz QuickBASIC Creations
Tue May 16, 2006 4:47 pm
Forum: General Discussion
Topic: Serial Port
Replies: 5
Views: 11804

OMFG... That is such a NOOBish mistake... I am sorry. Nathan is right. QB always has row then column. So it should be LOCATE Y,X.
Guess I have been graphing on coordinate planes in Algebra too much...
by Patz QuickBASIC Creations
Mon May 15, 2006 4:48 pm
Forum: General Discussion
Topic: Serial Port
Replies: 5
Views: 11804

Basically, you need to have a computer running a sending program, and the other running a recieving program. Sending program (sends key strokes) 'PQBC Serial Link Terminal WHILE KEY$ <> CHR$(27) 'Terminates on ESC KEY$ = "" WHILE KEY$ = "" KEY$=INKEY$ WEND OUT(&037F,ASC(KEY$)...
by Patz QuickBASIC Creations
Wed May 10, 2006 3:38 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: TI-BASIC program - Need suggestions.
Replies: 25
Views: 46677

Theophage wrote:You young whippersnappers and your speedy code! Why in my day, we used code that let us come back a couple of days later to see if it was done or not, and we liked it!

Now, GET OFF MY LAWN!!!
Get into the 21st century. People don't keep track of who's on who's lawn... Oh, you mean the code...
by Patz QuickBASIC Creations
Fri May 05, 2006 4:37 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Environment Variables
Replies: 5
Views: 7983

Thats what DOS emulation does for you. (because Windows NT based-OSes are not based on DOS, but the NT kernel.)
by Patz QuickBASIC Creations
Fri May 05, 2006 4:33 pm
Forum: General Discussion
Topic: New programming language...
Replies: 11
Views: 32881

New programming language...

OK peeps, listen up. I am going to start learning C++ (got a couple books from the public library). Anything I should know before starting? (I know about having to declare ALL your variables, extreme case-sensitivity, etc.) Don't worry. I won't leave the QB scene. It has too great of a QB-mmunity. :...
by Patz QuickBASIC Creations
Fri May 05, 2006 4:30 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with making a log file!!
Replies: 6
Views: 7380

I had not thought about that...

Moneo, you always have the best bug-fixes. People can sure learn alot from you...
by Patz QuickBASIC Creations
Fri May 05, 2006 4:27 pm
Forum: General Discussion
Topic: Need advice from Squaresoft fans...
Replies: 18
Views: 56193

I liked FF9, but I HIGHLY reccommend FF8 instead. Believe me.
by Patz QuickBASIC Creations
Tue May 02, 2006 4:55 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with making a log file!!
Replies: 6
Views: 7380

Try this. ' Quick LOG generator Print "Type in EOF at the end of your explanation." A = FREEFILE OPEN "Filename.log" FOR APPEND AS #A Print #A, "System date: "+DATE$ Print #A, "System time: "+TIME$ WHILE NOT INSTR(LCASE$(Explan$), "eof") INPUT Explan...
by Patz QuickBASIC Creations
Wed Apr 26, 2006 4:27 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: running QB in win XP
Replies: 4
Views: 7242

I hate to say this, but WINDOWS XP DOS emulation is better than DOSBox's. If you must use the IDE, just click your QBASIC icon. Otherwise, if you don't need the IDE, just use BC (Compiler that comes with QB) or use FreeBASIC.
by Patz QuickBASIC Creations
Mon Apr 17, 2006 5:52 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: TI-BASIC program - Need suggestions.
Replies: 25
Views: 46677

To group 800 the old program took 32 hours. See how mine's better?

New: 3 hours
Old: 32 hours.
by Patz QuickBASIC Creations
Thu Apr 13, 2006 5:01 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: BASIC for Windows
Replies: 16
Views: 22736

lurah wrote:PowerBASIC has PCOPY on concole, FB dont :wink: :lol:
sorry, couldnt resist..
Which is the main reason I don't use FreeBASIC for my *bigger* projects. Heck, my SCREEN 0 windowing routine (hand coded) uses PCOPY to "remove" windows.........
by Patz QuickBASIC Creations
Thu Apr 13, 2006 4:58 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: TI-BASIC program - Need suggestions.
Replies: 25
Views: 46677

OK, I just finished a diagnostic on my new code. To group 800, the program takes: 10771 seconds (about 3 hours.) I have yet to try the old code with 800 as the maximum number, however I will start it and tell you the results on Monday. (if it's done by then :lol: )



*-just started-*
by Patz QuickBASIC Creations
Thu Apr 13, 2006 4:49 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: TI-BASIC program - Need suggestions.
Replies: 25
Views: 46677

In fact, that analogy is very close. Here is an example using it. FIRST CODE: 1. Draws a random number. 2. Asks 'Have I used this number before?' 3. If not, add it to the list. 4. Put the number back in the hat. (every time) 5. Repeat. SECOND CODE: 1. Get 2 hats. (One with numbers, one empty) 2. Dra...
by Patz QuickBASIC Creations
Fri Apr 07, 2006 4:16 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: TI-BASIC program - Need suggestions.
Replies: 25
Views: 46677

That's what it was originally made for.
by Patz QuickBASIC Creations
Thu Apr 06, 2006 4:13 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: TI-BASIC program - Need suggestions.
Replies: 25
Views: 46677

Re: TI-BASIC program - Need suggestions.

A quick overview: Both codes generate random numbers in a random order and store them in L GROUP. However, none of the numbers ever repeat. Differences: First code: Generates a random number, checks if it exists in the list already. If it doesn't, it adds the number to the list. Second code: I'll do...
by Patz QuickBASIC Creations
Tue Apr 04, 2006 4:15 pm
Forum: Freebasic Questions & Answers
Topic: FreeBasic = Amazing
Replies: 13
Views: 31519

lurah wrote:Its linux compatible
YAY! I'll add $100(USD) to your account. Try to cash it and I'll KILL you!
by Patz QuickBASIC Creations
Mon Apr 03, 2006 5:22 pm
Forum: General Discussion
Topic: What computing needs is...
Replies: 9
Views: 19920

A powerful, stable OS Anything is 'powerful'. Stable: Linux with Universal Binary Compatiblity Windows is the closest, since most programs that come precompiled are for Windows. no need to build anything from source(unless you choose yourself) Any OS except Linux (being general). But, not all Linux...
by Patz QuickBASIC Creations
Mon Apr 03, 2006 5:07 pm
Forum: Freebasic Questions & Answers
Topic: FreeBasic = Amazing
Replies: 13
Views: 31519

Guess what I like most about FreeBASIC?

$100(USD) to the first person to get the correct answer!