hi experts,
I have this ActiveX Task in a DTS package.
Temporarily, just while debugging this, I want to display certain pieces of data while it is executing. Can I use msgbox ? How can I display/print file names?
Thanks, John
Function Main()
Dim fso, folder
set fso = CreateObject("scripting.FileSystemObject")
set folder = fso.getfolder("\\GM\C$\sys\Common\Scanned\to_be_added_to_website_TEST\")
' ?? How to display file name, etc within this loop ?
For Each file in folder.files
next
End Function
I have this ActiveX Task in a DTS package.
Temporarily, just while debugging this, I want to display certain pieces of data while it is executing. Can I use msgbox ? How can I display/print file names?
Thanks, John
Function Main()
Dim fso, folder
set fso = CreateObject("scripting.FileSystemObject")
set folder = fso.getfolder("\\GM\C$\sys\Common\Scanned\to_be_added_to_website_TEST\")
' ?? How to display file name, etc within this loop ?
For Each file in folder.files
next
End Function