Auto Reload Mode to Receive "Scroll to last/changed Line" Functionality

Started by Arthur, April 22, 2009, 04:58:31 PM

Previous topic - Next topic

Arthur

I suggest adding an option to the Auto-Reload functionality to "Scroll to Last Line".

This helps when monitoring log files.

alex

If you are viewing end of file (last line), this should be done automatically already.
HippoEDIT team
[url="http://www.hippoedit.com/"]http://www.hippoedit.com/[/url]

Stefan

YES, it does :D

-- Open "C:\temp\Test1.txt"  in HippoEDIT
-- execute this script
-- switch quickly back to HE
-- jump to last line (Ctrl+End)
-- watch whats happens

Set FSO = CreateObject("Scripting.FileSystemObject")
Set oFileName = FSO.OpenTextFile("C:\temp\Test1.txt",8,True)
  For i = 1 To 10
        oFileName.writeLine i
        wscript.sleep 1000
  Next
oFileName.close
Stefan, HippoEDIT beta tester 
HippoEDIT - the editor programmers wants to code thyself when they are dreaming.        -Don't just edit. HippoEDIT!-

Arthur