zasxes Posted April 2, 2004 Posted April 2, 2004 I have one program writing info to a comma delimited file. If their any way for another program to monitor that info and display averages of each column in a graph of even just text that updates every second
scriptkitty Posted April 2, 2004 Posted April 2, 2004 Quick example of constantly checking a log file: $line=1 $file="test.log" While 1 sleep(10) $linetext=FileReadLine("test.htm",$line) If @error = -1 Then $line=$line-1 Else If $line<>"" Then Tooltip($linetext,0,0) $line=$line+1 EndIf Wend AutoIt3, the MACGYVER Pocket Knife for computers.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now