Any chance you will thank me or ask for further info?
Let's not be an Ephemeralus
Mac
Search found 151 matches
- Mon Apr 14, 2008 10:18 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Printing array problem
- Replies: 3
- Views: 5003
- Tue Apr 08, 2008 12:58 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Printing array problem
- Replies: 3
- Views: 5003
Re: Printing array problem
Put a semi-colon at the end ofrexykik wrote:How can i get them to print within the same row of my column?
PRINT sngScores(intPlayerCount, intGameCount)
Like this
PRINT sngScores(intPlayerCount, intGameCount);
Right?
Mac
- Tue Apr 01, 2008 1:11 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: WRITING A SIMPLE GAME PROGECT.
- Replies: 16
- Views: 16196
OK, I'll not do it again !!! Is it mentioned in the forum rules too somewhere ? (I might have missed something) The "no do homework" rule is universal. No forum anywhere will simply do your homework. a) You do the best you can b) You post what you did c) We give hints and answer specific questions ...
- Mon Mar 31, 2008 4:42 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Graphs and what not...
- Replies: 25
- Views: 21914
- Sun Mar 30, 2008 3:38 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Graphs and what not...
- Replies: 25
- Views: 21914
Re: Homework
True, gurmeet, and don't bother going elsewhere. Nobody willburger2227 wrote:We do not do homework
do your homework. QBasic programmers are honorable students.
Mac
- Sun Mar 23, 2008 11:25 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Can anyone help me finish my program
- Replies: 2
- Views: 4239
And to show some debugging techniques
Some debugging techniques Run the program below. It is designed to create 3 numbers rather than 5 It is designed for a max of 4 Why? Because the likelyhood of getting a duplicate is so low for 5 numbers in the range 0-49 that you can't test that case. This means someday your program will go down a p...
- Sat Mar 15, 2008 12:21 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: ?????
- Replies: 7
- Views: 10178
Re: Hmmmmmmm
Mac you both used END instead of SYSTEM too. Bad boys LOL Ted Good catch, but I had a reason: focus on how to capture key, not how to terminate a program. CLS PRINT "Press ESC to exit program, 'T' to print time" DO PRINT : PRINT "Press key: "; DO: k$ = INKEY$: LOOP WHILE k$ = "" IF k$ = CHR$(27) TH...
- Fri Mar 14, 2008 6:08 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: ?????
- Replies: 7
- Views: 10178
- Thu Mar 13, 2008 9:49 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: ?????
- Replies: 7
- Views: 10178
You test the key and do whatever you want
Here is an example that prompts until you
press "Q"
Here is an example that prompts until you
press "Q"
Code: Select all
CLS
DO
PRINT "Press key: ";
DO: k$ = INKEY$: LOOP WHILE k$ = ""
PRINT k$
IF UCASE$(k$) = "Q" THEN END
LOOP
- Wed Mar 05, 2008 6:55 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Inserting Hexadecimal in a file
- Replies: 11
- Views: 17339
Thanks
Thanks, guys, for the explanations.
I simply don't have the time to tutor via forum questions. I provided a program that would do the required operation. I say just run the program and update the ROM
Mac
I simply don't have the time to tutor via forum questions. I provided a program that would do the required operation. I say just run the program and update the ROM
Mac
- Tue Mar 04, 2008 7:02 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Inserting Hexadecimal in a file
- Replies: 11
- Views: 17339
Get it?!?! Got it. Made a demo file, "z64". The demo program produced Menu - Last byte is currently 2007 1) Read hex 2) Write hex <------------ I chose this option 3) Finished Character Number? 2008 <--- I selected last+1 to append new char Value: e3 <---------------- I entered this Hex Done Menu -...
- Mon Mar 03, 2008 12:40 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Inserting Hexadecimal in a file
- Replies: 11
- Views: 17339
Re: Inserting Hexadecimal in a file
I'm not sure that a ROM is a file. You can easily append HEX (or any other) stuff at the end of a file. How it would get to a ROM I am notLee wrote:How can I insert hex in a file?
z64 is a N64 ROM and Im making a text editor to insert code at the end of it.
clear. Never messed with it.
Mac
- Mon Mar 03, 2008 5:32 am
- Forum: General Discussion
- Topic: Encryption and XOR
- Replies: 15
- Views: 20836
No reply yet
I guess the question got answered?
Mac
Mac
- Sun Mar 02, 2008 8:35 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Wont Work! :(
- Replies: 12
- Views: 12704
Re: FAQs
Here are the FAQ links Thanks. I fixed the index, but I guess it will take some time before network54 search works on that forum. I asked that the index be "refreshed", which they did. But that messed things up worse. Anyway, time to quit hijacking this thread and go work elsewhere. LOL! Mac http:/...
- Sun Mar 02, 2008 10:48 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Wont Work! :(
- Replies: 12
- Views: 12704
- Sun Mar 02, 2008 4:14 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Wont Work! :(
- Replies: 12
- Views: 12704
- Sat Mar 01, 2008 10:34 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Wont Work! :(
- Replies: 12
- Views: 12704
It's notable to mention that the problem isn't vista per se. it's more of the fact that you have a 64 bit CPU in your PC...Vista on a 32 bit CPU should run QBasic as expected. Do me a favor, MystikShadows, go to http://www.network54.com/Forum/171757/ and make a FAQ with a name such as "QBasic in Vi...
- Thu Feb 21, 2008 9:57 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: sizeof()
- Replies: 12
- Views: 13064
Who cares?
I just wonder what coding problem you have that requires to know the length of a variable (except string) If I create a TYPE, for example, and put a bunch of variables, I never needed to need the size. QBasic worries about that. At the end, I create a record, say XXX as that TYPE. Fine, now I might ...
- Sun Feb 10, 2008 9:53 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Haven't used qb in awhile, quick question
- Replies: 28
- Views: 26460
Re: FINALLY!!!!!!!!!!!!!
Come on Ted, be nice!burger2227 wrote:I will remember your (DaveUnit) smart ass and avoid you...........
Mac
- Sun Feb 10, 2008 9:49 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Haven't used qb in awhile, quick question
- Replies: 28
- Views: 26460