batch matrix wave load failing

So I am trying to load txt files that contain a matrix. Each file is named "jj-ii" where jj and ii are integers(for instance a file named "3-5"). To start I made a function to just load one matrix named "jj-ii", and running this program I have no problems, it works great. When I try to run it in the batch mode though nothing happens. No files are loaded and I dont get any errors, so I don't know why it isn't working. Any ideas?



function LoadMatrices()

variable ii,jj=0

    Do 
        For(ii=0;ii==10;ii+=1)
        loadmatrix(jj,ii)
        endfor     
    jj+=1
    while(jj<1001) 
                       
end


function loadmatrix(jj,ii)
variable ii,jj
string basestr=num2str(jj)+"-"
string loadstr= "C:Users:Admin:Documents:WLIM:6.12.12:HeNe:"+num2str(jj)+"-"+num2str(ii)

LoadWave/J/M/D/A=$basestr /K=0 loadstr

end
Your for loop has an error. Change
    For(ii=0;ii==10;ii+=1)

to
    For(ii=0;ii<=10;ii+=1)

or
    For(ii=0;ii<10;ii+=1)