Hi Jeff,

>
> Maybe with SHFileOperation.
>

I think Peter would like to display a separate (2nd) progress bar for the
"copy 200 files" action when using *.tps wildcards. Similar to the 2nd
progress bar when installing a large file.

To do this, the runtime internally has to execute the "Copy File(s)" action
twice (for wildcards). In the first call, count the number of *.tps files
to be processed and do not copy. Then in the second step, call the "Copy
File(s)" action again, but this time handle the "real" copy file process
(and update the 2nd progress bar for the 200 files).

Unfortunately, SHFileOperation is not (fully) backward compatible with older
Windows versions. The same is true for the CopyFileEx Windows API. So the
only solution is to use a CopyFile Windows API wrapper.

Friedrich