Jump to content

Creating Graphs


Recommended Posts

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...