Search found 887 matches

by Z!re
Tue Aug 31, 2004 12:54 pm
Forum: General Discussion
Topic: help with DS4QB++
Replies: 12
Views: 22001

Code: Select all

dummy$=Input$(1)
Uhm... Waits for a keypress...

Doesent fill the buffer, and doesent mess everything up like SLEEP does.


SLEEP should be avoided like a plague and syfilis infected 70yr old obesed... err... woman that.. err.. do stuf... err.. for money.. err...
by Z!re
Tue Aug 31, 2004 12:50 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Mouse code problem
Replies: 2
Views: 8382

Start QB from the commandline like this:

If using QB45:
QB /LQB


If Using PDS71:
QBX /LQBX
by Z!re
Tue Aug 31, 2004 12:45 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: How many sprites?
Replies: 4
Views: 10210

There are ways around that... I'm using a 32MB world map, and over 2200 tiles, all of which are 64x64... Not counting the sprites, which range from 32x32 to 128x128... Only loading the needed psrites into memory is the trick. Like... you don't need the LAVA tile, when you're in the smiths house, do ...
by Z!re
Tue Aug 31, 2004 5:38 am
Forum: General Discussion
Topic: Title for my new QB magazine
Replies: 8
Views: 20456

Name of Mag: SpearheadQB, or QB Spearhead


And as a subline: "Spearheading the ways of QBMags since [and the date of first release here, I'm too lazy to check it up]"
by Z!re
Mon Aug 30, 2004 5:16 am
Forum: General Discussion
Topic: Title for my new QB magazine
Replies: 8
Views: 20456

QB Spearhead

Spearhead QB



"Spearheading the way of QB Mags since [start date here]"

:P
by Z!re
Sun Aug 29, 2004 5:55 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Mouse,sound and motion questions
Replies: 3
Views: 9837

1) REM $DYNAMIC DEFINT A-Z SUB Mouse (AX%, bx%, CX%, DX%) MouseData$ = "5589E58B5E0C8B07508B5E0A8B07508B5E088B0F8B5E068B175B581E07CD33538B5E0C8907588B5E0A89078B5E08890F8B5E0689175DCA0800" Mousei$ = SPACE$(57) FOR I% = 0 TO 56 a$ = MID$(MouseData$, 1 + I% * 2, 2) H$ = CHR$(VAL("&H&...
by Z!re
Sat Aug 28, 2004 8:59 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Need a little help
Replies: 9
Views: 16183

I've never seen a program that can't be compiled using PDS 7.1 Either from inside the IDE, or from the commandline. If you are using QB45, or PDS 71 (QB71) then you do: Run -> Make EXE: Enter your options, make sure to select: Stand Alone EXE. Press Ok... Now there will be an EXE in your current fol...