the line
Code:
$FuncToExecute=Split("fnScrFunc1,fnScrFunc2,fnScrFunc3,fnScrFunc4,fnScrFunc5,fnScrFunc6",",")

initializes an array that contains the list of functions to be called.


in the loop
Code:
For Each $sFunction ... next  


each function defined in the array is called sequentially. But there is a mistake in the code.
Code:
;$prgStatus.Max = Ubound($FuncToExecute)+1
For Each $sFunction in $FuncToExecute
;$prgStatus.Value = $prgStatus.Value+1
$nul=Execute($sFunction)
Next


the two commented lines should be uncommented because they are implementing the progressbar !!!
_________________________
Christophe