Search found 107 matches

by RayBritton
Mon Feb 14, 2005 12:36 pm
Forum: General Discussion
Topic: i'm banned
Replies: 10
Views: 14043

yes thanks
by RayBritton
Sun Feb 13, 2005 3:09 pm
Forum: Freebasic Questions & Answers
Topic: FreeBASIC problems
Replies: 9
Views: 17449

FreeBASIC problems

Will is it that when i try and compile this code RANDOMIZE TIMER / 3 arearetrival: monum = INT((3 - 1 + 1) * RND + 1) SELECT CASE area CASE 0 GOTO runerror CASE 1 IF monum = 1 THEN monfilename$ = "areaone1.mon" IF monum = 2 THEN monfilename$ = "areaone2.mon" IF monum = 3 THEN mon...
by RayBritton
Sun Feb 13, 2005 6:40 am
Forum: General Discussion
Topic: i'm banned
Replies: 10
Views: 14043

another thing if i use qmidi in freebasic will it work or do i use something else and do i put my entire program in the middle where says "put here"
by RayBritton
Sat Feb 12, 2005 6:32 pm
Forum: General Discussion
Topic: i'm banned
Replies: 10
Views: 14043

i'm banned

i just went to qbasicnews.com and without logging on it told me, i was banned. An ideas, as i've never been there before (i think)?


PS I was wondering how many languages (computer) poeple know
by RayBritton
Fri Feb 11, 2005 1:13 am
Forum: General Discussion
Topic: which version
Replies: 20
Views: 25345

which version

i was wondering, as i use 7.1 and not a lot of people seem to like , is it worth me getting 4.5. And whats the difference between 7.1 and 4.5/
by RayBritton
Fri Feb 11, 2005 12:32 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with DATA graphics
Replies: 57
Views: 56203

thanks, the problem was i forgot to put it in a screen
the two xs wasn't in my code i typed it wrong
thanks again
by RayBritton
Thu Feb 10, 2005 12:55 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with DATA graphics
Replies: 57
Views: 56203

Help with DATA graphics

If you do:

Code: Select all

DATA 01,01,01,01
DATA 01,00,00,01
DATA 01,00,00,01
DATA 01,01,01,01

FOR x = 1 TO 4
FOR x = 1 TO 4
READ z
PSET(x, y), z
NEXT
NEXT

DIM box(4*4)
GET (0, 0) - (4, 4), box
but i get a syntax error about the PSET(x, y), z
so i redid it but now i get a syntax about GET (0,0) - etc.