Face,

Here's sort of a step-by-step way of doing it. Plus, it will read the info file until EOF is found ...

code:

if open(2, "info.txt") = 0


$info = readline(2) + chr(13)


while @error = 0
$info = $info + ReadLine(2) + chr(13)
loop


$message = "There is a update available" + chr(13) + chr(13)
+ "Update Info:" + chr(13) + chr(13) + $info
+ "Continue with the update?"


$answer = messagebox($message,"Update",0)


$q=close(2)


endif


-Shawn