You could after it do a check to see if it was made, or edit the function itself to return true if the new file exists
(see FileExists in the helpfile, i think)
[quick&dirty, untested]
Func _FileCopy($fromFile,$tofile)
Local $FOF_RESPOND_YES = 16
Local $FOF_SIMPLEPROGRESS = 256
$winShell = ObjCreate("shell.application")
$winShell.namespace($tofile).CopyHere($fromFile,$FOF_RESPOND_YES)
if FileExists($tofile) then
return true
else
return false
endif
EndFunc
again, not sure if that'll work, but should give you a general idea of possible ways to verify. Another idea could be to have it check if $fromfile has like *.txt or file.* use FileFindFirstFile/nextfile.
~cdkid