Section
FileOpen $0 "$TEMP\test.txt" "r"
FileRead $0 $1
loop:
StrCmp $1 "$\r" loop
StrCmp $1 "$\n" loop
FileClose $0
MessageBox MB_OK "Contents of that file : $1"
SectionEnd is what I have -- but it's only outputting up to where there's a new lineis there a way to make it read the entire file regardless of returns/newlines?
any help would be great, thanks