J
Joe
Dear all,
I am using Excel 2003 SP2 and VB 6.3
I am trying to use Excel to copy from the server.
for that I use "scripting.filesystemobject" to get the list of files.
'my code is..........
'**********************
Function Copy_Data(ByVal fromFolder As String, ByVal toFolder As
String)
Dim FSO As Object
Set FSO = CreateObject("scripting.filesystemobject")
FSO.copyfolder fromFolder, toFolder
End Function
'**********************
I need to show some kind of progress window. Since the folders are
very big, it takes a lot of time to finish copying.. Is it possible
to show any progress and if so how?????
Thank you.....
Reagrds
Joe
I am using Excel 2003 SP2 and VB 6.3
I am trying to use Excel to copy from the server.
for that I use "scripting.filesystemobject" to get the list of files.
'my code is..........
'**********************
Function Copy_Data(ByVal fromFolder As String, ByVal toFolder As
String)
Dim FSO As Object
Set FSO = CreateObject("scripting.filesystemobject")
FSO.copyfolder fromFolder, toFolder
End Function
'**********************
I need to show some kind of progress window. Since the folders are
very big, it takes a lot of time to finish copying.. Is it possible
to show any progress and if so how?????
Thank you.....
Reagrds
Joe