Pete, what web browser do you use when posting code?
here's a snippet of what your first post looks like when looking at the web page source
notice all the  
now here's a snippet from PhilOfPerth's post
notice that there are no   in the indentation
here's a snippet of what your first post looks like when looking at the web page source
Code: (Select All)
<br />
REDIM Hold AS POINTAPI<br />
TYPE POINTAPI<br />
X_Pos AS LONG<br />
Y_Pos AS LONG<br />
END TYPE<br />
notice all the  
now here's a snippet from PhilOfPerth's post
Code: (Select All)
<br />
FindUnique<br />
For bletrnum = 1 To blngth ' for each letter in base$<br />
fileletr$ = Mid$(base$, bletrnum, 1)<br />
po = InStr(unique$, fileletr$)<br />
If po = 0 Then GoTo skip<br />
Mid$(unique$, po, 1) = " "<br />
dictfile$ = "wordlists/" + fileletr$<br />
Close<br />
Open dictfile$ For Input As #1<br />
GetAWord:<br />
While Not EOF(1)<br />
Input #1, dictwrd$<br />
l = Len(dictwrd$): If l < min Or l > max Then GoTo GetAWord<br />
WORDCHECK<br />
Wend<br />
skip:<br />
Next<br />
notice that there are no   in the indentation