Search found 825 matches

by Nodtveidt
Fri Dec 21, 2007 9:14 am
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 74797

That's a very good idea, lurah. Besides, I'm willing to "lay down my weapons" as long as the "opposing side" is willing to lay down theirs. The last thing Galleon needs right now is people destroying his reputation. But there is one person in particular that you might want to get...
by Nodtveidt
Fri Dec 21, 2007 12:20 am
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 74797

Galleon himself wasn't immune to the virus either; he said quite a few ridiculous things in times past. But it appears he's been rather civil lately...and with good reason too, because screwing up his own reputation now is not what he needs. Unfortunately for him, people like burger/clippy are screw...
by Nodtveidt
Fri Dec 21, 2007 12:10 am
Forum: QBASIC and QB64 Questions & Answers
Topic: first graphic based....game?
Replies: 11
Views: 20803

That rule only applies to images uploaded to the server. His avatar is remotely linked and therefore isn't forced to conform to the avatar ruleset. 150x150 is the generally accepted standard for forum avatars across the web, it's considered bad netiquette to use larger images.
by Nodtveidt
Fri Dec 21, 2007 12:06 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Putting variables in the DRAW command.
Replies: 20
Views: 26187

Call me a doctor! You're a doctor. Most newer programmers do not DIM all of their variables, especially if they are just experimenting. There is absolutely nothing wrong with type suffixes. Look in any book on Basic! That's a pretty gross assumption. You have no idea if a coder, even a "new on...
by Nodtveidt
Thu Dec 20, 2007 10:21 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Loading a BMP file to show
Replies: 19
Views: 25498

That code would work if not for the & broken parts. All one has to do is recognize that minor issue and make the change in the source when they copy it.
by Nodtveidt
Thu Dec 20, 2007 10:14 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Putting variables in the DRAW command.
Replies: 20
Views: 26187

Code: Select all

DIM A AS STRING
A = "Clippy has fleas"
PRINT A
Type suffixing is evil.
by Nodtveidt
Wed Dec 19, 2007 11:29 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Compiler problem with QuickBasic 7.10
Replies: 5
Views: 9005

Don't use QB 7.1 unless you have a specific reason for doing so. Stick with QB 4.5, it tends to produce smaller executables anyways.
by Nodtveidt
Wed Dec 19, 2007 10:21 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Putting variables in the DRAW command.
Replies: 20
Views: 26187

How do you know that his a and b variables aren't strings already?
by Nodtveidt
Wed Dec 19, 2007 10:20 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: first graphic based....game?
Replies: 11
Views: 20803

The flicker is, of course, a result of the CLS. You're using SCREEN 7, which means you can always use screen pages. Look up how to do this in the QB help, it gives a pretty good explanation. One suggestion I have for you: if you're going to use INKEY$, don't try doing comparisons against INKEY$ itse...
by Nodtveidt
Wed Dec 19, 2007 9:55 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Loading a BMP file to show
Replies: 19
Views: 25498

Andrew, I ran into the same exact problem while testing that source code. It appears to be a little broken. Unfortunately, I did not test that code before explaining it to you, so I'm partially at fault for that. In any event, if all you need is a working BMP viewer, you can use this: http://www.nod...
by Nodtveidt
Wed Dec 19, 2007 8:04 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Loading a BMP file to show
Replies: 19
Views: 25498

Andrew: post your whole program so I can help you debug it. And ignore burger2227, he's a well-known troublemaker around these parts.
by Nodtveidt
Tue Dec 18, 2007 3:45 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Loading a BMP file to show
Replies: 19
Views: 25498

No. The TYPE is to be left alone. It's code after all. The comments simply explain to you what you should find after the header is read from the BMP file. OUT &H3C8, 0 is always going to fail. It's not valid syntax; it's a result of someone's web script monkeying up. The valid syntax is like...
by Nodtveidt
Tue Dec 18, 2007 8:44 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Loading a BMP file to show
Replies: 19
Views: 25498

I can give you some more detailed information. I did not copy the TYPE information because it really doesn't need explaining, and it wouldn't copy with linebreaks anyways. In fact, nothing did...I had to add those manually. Urg! Anyways... DIM BmpHeader AS BMPHeaderType The TYPE you see earlier is j...
by Nodtveidt
Tue Dec 18, 2007 1:07 am
Forum: QBASIC and QB64 Questions & Answers
Topic: 256 colours
Replies: 12
Views: 24783

Or if you want to see them visually...

Code: Select all

DIM palLoop AS INTEGER
SCREEN 13
FOR palLoop = 0 TO 255
LINE (palLoop,0)-(palLoop,64), palLoop
NEXT palLoop
DO: LOOP WHILE INKEY$ = ""
END
by Nodtveidt
Mon Dec 17, 2007 10:08 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: 256 colours
Replies: 12
Views: 24783

There is a standard VGA palette but it isn't exactly "named" in any way. Furthermore, you can customize it to your liking with little effort as long as you understand the "6 bit rule"...that is, 6 bits for each color index, or 0-63. Each color in the VGA palette is made up of 6 b...
by Nodtveidt
Mon Dec 17, 2007 12:00 am
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 74797

EDIT: Deleted. I don't have to stoop to your level.
by Nodtveidt
Sun Dec 16, 2007 3:28 pm
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 74797

You have some pretty serious reading/language comprehension problems. And I do mean serious. Clearly what I'm saying isn't getting through to you, but then again, that's to be expected. I have already explained it three times now, I'm not going to do it again. Grab a book on basic English comprehens...
by Nodtveidt
Sun Dec 16, 2007 2:08 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: CALL ABSOLUTE error "Sub Program Not Defined"
Replies: 7
Views: 14026

A batch file is merely a text file that you rename the extension to .bat. The file contains normal command line instructions. You could associate .BAS files with the batch file that you would use to start up QBX with the default library loaded.
by Nodtveidt
Sun Dec 16, 2007 1:11 pm
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 74797

What v1ctor or FB has to do with this? There is different ways to create project. Some ones likes to publish it when its more functional and others publishes it from the scratch and works with it. Whats the matter? Are you saying v1ctor way is better or even only right one? What I'm saying is that ...
by Nodtveidt
Sun Dec 16, 2007 7:50 am
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 74797

Youre ok fella by my side but even ok peoples does write time to time something that is wrong/brainless or something. In this case, i think your reply was way too rude if we consider phase where qb64 is at this moment. It is practically a baby, and if baby cant yet walk properly, you dont start yel...