Could someone give me a few hints on how to use GUICopy with the below code please? The below copy method is kicked off when a button is clicked. It works fine, but I need to see a progress bar. Thanks as always.

Code:
  
Function CopyUser()

dim $serverPath,$localPath
$serverPath = 'C:\data\Share\' + $User.text
$localPath = 'c:\data\User\'
If exist($serverPath)
Copy $serverPath + '\*.*' $localPath /c /h /r /s
EndIf

EndFunction