Hi,
I have used a FileSystemObject to copy a file from one network drive to another.
According to MSDN if you use a 'showUI' argument, a progress GUI should be displayed.
I have hunted the web to find what UIOption.AllDialogs is enumerated to and it appears to be a 3, so use that as the argument..
But the GUI isn't displayed, have I used the correct enumeration? and if so why doesn't the GUI display?
Thanks,
1DMF.
"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Dance Music Downloads
I have used a FileSystemObject to copy a file from one network drive to another.
According to MSDN if you use a 'showUI' argument, a progress GUI should be displayed.
I have hunted the web to find what UIOption.AllDialogs is enumerated to and it appears to be a 3, so use that as the argument..
Code:
Dim fs As Object
Set fs = CreateObject("Scripting.FileSystemObject")
fs.CopyFile sLocal, sWord, 3
But the GUI isn't displayed, have I used the correct enumeration? and if so why doesn't the GUI display?
Thanks,
1DMF.
"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Dance Music Downloads