easy.
Code:
filename := "file.txt"
count = 0
index = 1
FileRead, content, %filename%
Loop, parse, content, `n, `r
{
if(count == 10)
{
index++
count = 0
}
filepart%index% := filepart%index% . A_LoopField . "`n"
count++
}
Loop, %index%
Msgbox % filepart%A_Index%
replace your filename in the filename variable. the second loop is for debugging only you can remove that after, and access the parts of the file with "filepart" filepart1 contains first 10 lines. filepart2 contains next 10 lines.. etc.. wil work on files with hundreds of lines