Search found 142 matches

by The Awakened
Tue Aug 30, 2005 7:22 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: No black behind text
Replies: 11
Views: 12499

You won't have to redraw the graphics, just make up your own font, which isn't all that hard. If you really don't want to make your own, just make a program that prints every ASCII code in the standard QB font, and then GET each one, BSAVE it into one big file, and then you're ready to use it. If yo...
by The Awakened
Tue Aug 30, 2005 1:05 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: No black behind text
Replies: 11
Views: 12499

Okay... well first you'll have to whip up your own font in a graphic editor. You'll probably want it to correspond to the ASCII character codes. Then you want to make a mask of each letter/character of your font. Then you put it on the screen, masked. So as for actually making a PRINT routine for yo...
by The Awakened
Tue Aug 30, 2005 12:46 pm
Forum: General Discussion
Topic: dosdraw program in file area
Replies: 4
Views: 8704

Did you change the screen mode to whatever mode DosDraw uses? By the way, having that x, y, c crap is too much. You shouldn't have to have the x/y coordinates, just the color of each pixel in seqential order. If DosDraw actually DOES do this (and as I write this now, I'm thinking it doesn't and you ...
by The Awakened
Tue Aug 30, 2005 12:40 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with DATA graphics
Replies: 57
Views: 57082

I think, considering this thread is 7 months old, that everybody's figured it out. :wink:
by The Awakened
Tue Aug 30, 2005 12:37 pm
Forum: News and Announcements
Topic: qbinux
Replies: 140
Views: 312276

Cool. Thanks! :D
by The Awakened
Mon Aug 29, 2005 5:47 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Loading Images from PP256
Replies: 1
Views: 3086

Don't use DATA Statements. Icky. Save them as a regular bsave file, and then to load them, use this: DIM Image%(130) 'This is 260 bytes, as each integer is 2 bytes. This is 'enough for a 16 by 16 image. The formula for figuring 'out how many bytes you will need is width * height '+ 4, and that's the...
by The Awakened
Mon Aug 29, 2005 4:32 pm
Forum: News and Announcements
Topic: qbinux
Replies: 140
Views: 312276

So what all does Novix do that can't be done with "just QBinux"?
by The Awakened
Sun Aug 28, 2005 5:33 pm
Forum: General Discussion
Topic: Troll? me?
Replies: 19
Views: 24747

IDE stands for Integrated Development Environment, and yes, that's what you get when you open up QB. And what do you mean, you can't find it?!? It's right there! Under Binaries, you choose what operating system you're using and click on it! Oh, and why would you post as a different person and ask su...
by The Awakened
Sat Aug 27, 2005 8:44 pm
Forum: General Discussion
Topic: Can't Delete DOS EXE's... and setting EMM386 up...
Replies: 11
Views: 15752

Actually, to me, it sounds like "Grrrtz!!!!" like a person getting mad at their code and foaming at the mouth.

Hmm... why'd I bump this topic, anyway? :D
by The Awakened
Sat Aug 27, 2005 5:53 pm
Forum: General Discussion
Topic: Password problem
Replies: 5
Views: 9495

It's an operating system, which I am told is much more stable and less bloated than Windows.
by The Awakened
Sat Aug 27, 2005 12:43 pm
Forum: News and Announcements
Topic: qbinux
Replies: 140
Views: 312276

Well, I finally had some time last night, so I installed QBinux. I must say, I'm looking forward to what it will become. :D I have a few questions... First of all, I noticed some files with an extension of ns5, which looked kinda funny when I opened them in edit. Then I opened the files with the sam...
by The Awakened
Sat Aug 27, 2005 12:09 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need as many quick answers as I can get!
Replies: 12
Views: 13678

Well, if the numbers can be between 0 and 255, you could do this: DIM Variables (0 to 39) x = 1 y = 2 'change to whatever the 2 numbers are that you need 'put the variables in FOR counter= 0 to 39 DEF SEG = VARSEG (Variables(counter)) POKE VARPTR(Variables(counter)) , x POKE VARPTR(Variables(counter...
by The Awakened
Fri Aug 26, 2005 11:16 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: input time delay
Replies: 4
Views: 5609

Yeah, I didn't include the midnight error handler because I knew he got it from another thread. :)
by The Awakened
Fri Aug 26, 2005 3:36 pm
Forum: General Discussion
Topic: What kind of music do we all listen to?
Replies: 26
Views: 38310

I'm sure it helps, considering the complexity of the music. The weaving of different instruments together, in a way, parallels the brain (in my opinion), and possibly stimulates it to work more coherently.

All of the above is just speculation and idea. :D
by The Awakened
Fri Aug 26, 2005 1:12 pm
Forum: General Discussion
Topic: What kind of music do we all listen to?
Replies: 26
Views: 38310

What kind of music do we all listen to?

I figured I'd make a thread where we could share our musical tastes with others, and recommend bands and songs. I find I get to know people better when I talk with them about music. So, here I go. Primarily, my interest lies in progressive/power metal. My favorite band for sure is Dream Theater. If ...
by The Awakened
Thu Aug 25, 2005 10:36 pm
Forum: General Discussion
Topic: downloads
Replies: 12
Views: 14121

Well, like Pete said, he's busy. Putting a small image for EVERY download would take a long time... besides, it's not like we're all that cosmetic of people... we code in QB. :D
by The Awakened
Thu Aug 25, 2005 10:33 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: input time delay
Replies: 4
Views: 5609

StartTime! = TIMER 'you could make it an integer if precise timing is not needed Do A$=inkey$ if A$ <> "" then CMD$ = CMD$ + A$ end if locate y, 2: PRINT CMD$ loop until cmd$ = chr$(13) or TIMER - StartTime! < AmountOfSeconds :) I still havn't finished the Kiwi Bird... damn that thing is ...
by The Awakened
Thu Aug 25, 2005 10:25 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: key problem
Replies: 13
Views: 10863

Code: Select all


DO
    t = t - 1
    IF t = 1 THEN EXIT LOOP
    b = b - 1
LOOP UNTIL b = 1

by The Awakened
Wed Aug 24, 2005 1:48 pm
Forum: News and Announcements
Topic: Qbinux Logo contest
Replies: 3
Views: 7925

I can try whipping something up... right now I'm working on sprites in PP256, but once I finish this animation, I'll have a go at it. :D
by The Awakened
Wed Aug 24, 2005 12:13 am
Forum: QBASIC and QB64 Questions & Answers
Topic: how?
Replies: 20
Views: 16077

http://petesqbsite.com/sections/tutoria ... ycodes.txt


You CAN look this stuff up on the website before you come here. :wink: