Edit:


Ummm no noit really, It was there as an example of the $include metacommand.Rattrapmax6 wrote: '$INCLUDE: "QB.BI" would also load my lib or something??Or are you asking that?? heh heh
I think this is the right code:RayBritton wrote:If you do:but i get a syntax error about the PSET(x, y), zCode: 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
so i redid it but now i get a syntax about GET (0,0) - etc.
Code: Select all
CLS
SCREEN 13
FOR x = 1 TO 4
FOR y = 1 TO 4
READ z
PSET (x, y), z
NEXT
NEXT
DIM box(4, 4)
GET (1, 1)-(4, 4), box
DATA 01,01,01,01
DATA 01,00,00,01
DATA 01,00,00,01
DATA 01,01,01,01
Code: Select all
GET (1, 1)-(1, 1), Array