Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.51 KB | None | 0 0
  1. For $i = 1 To UBound($FileArray) - 1
  2.         ;ToolTip("Processing file " & $i & " of " & $NumOfFiles & @CRLF,0,0,"Progress...")
  3.  
  4.         ;ToolTip("Processing file " & $i & " of " & $NumOfFiles)
  5.         ProgressOn("Progress....", "Processing file " & $i & " of " & $NumOfFiles)
  6.         ProgressSet($i)
  7.         $FileArray[$i] = StringTrimRight(StringRegExpReplace($FileArray[$i], '[^\.]+$', ''), 1) ;for file extn
  8.         $ImportFileName = $FileArray[$i]
  9.         Local $hTimer = TimerInit()
  10.  
  11.         If $i = UBound($FileArray) - 1 Then
  12.             BlockInput(0)
  13.  
  14.         EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement