Hi All,
I want to make my progress bar progress with the amount of File lines read.
How would I do this correctly. So far the code below can sometimes run in the middle of the progress bar and state completed.. and other times it can run into the 200%.
;========================================================================
ProgressOn("TITLE", "ACTION")
;========================================================================
For $count = 1 To _FileCountLines($FileRead) Step 1
$string = FileReadLine($FileRead, $count)
$value1 = $input[1]
$value2 = $input[2]
$value3 = $input[3]
$value4 = $input[4]
$TM = FileWrite("C:\temp\test.txt", $value1 & " " & $value2 & " " & $value3 & " " & $value4 & @CRLF)
ProgressSet($count, $count & "%")
Next
;========================================================================
; PROGRESS BAR OFF
;========================================================================
ProgressSet(_FileCountLines($FileRead), "Completed!")
Sleep(750)
ProgressOff()
;========================================================================