
yep we all new it, the truth is when I first used DB I thought well i can handle this, jumped straight in the deep end. So for a while I was ok until just when Ive realised what an Idiot I was because even though I know some of the more complex commands I cant use the DIM command or DATA commands

so obviously ive tried to salvage some dignity by trying to learn these commands and ive got this far.
The prob is I dont know how to make the 1 and 0's in to rectangles and blank spaces! can anyone help a porr innocent looser

*tries to make DBpro users feel sorry for the powerful monkey man

*
heres what Ive done so far
dim map(10,10)
for i=1 to 10
for l=1 to 10
bx=i
by=l
read dat
map(i,l)=dat
next l
print
next i
data 1,1,1,1,1,1,1,1,1,1
data 1,0,0,0,0,0,0,0,0,1
data 1,0,1,1,1,0,1,1,0,1
data 1,0,1,0,0,0,0,1,0,1
data 1,0,0,0,1,1,0,1,0,1
data 1,0,0,0,0,0,0,1,0,1
data 1,0,0,0,0,0,0,0,0,1
data 1,0,1,1,1,0,1,1,0,1
data 1,0,1,0,0,0,0,1,0,1
data 1,1,1,1,1,1,1,1,1,1