"-2147024832"
This error is observered sometimes when the file size is over 1 GB. The
code has worked fine with over 4 GB size of file.
Kindly help to resolve the above problem.
--
Regards
Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk
Keeping it FREE!
"raajkul" <raa...@gmail.com> wrote in message
news:1140416934.6...@g47g2000cwa.googlegroups.com...
"-2147024832" (in hex) is 0x80070040 ...
0x8007---- errors are WIN32 errors.
Win32 errors are documented in decimal.
0x0040 is 64 in decimal.
System Error Codes (0-499) constant [Base]
http://msdn.microsoft.com/library/en-us/debug/base/system_error_codes__0-499_.asp?frame=true
ERROR_NETNAME_DELETED
64 The specified network name is no longer available.
The problem appears to be a (possibly transient/intermittent) network error,
not necessarily a file i/o error.
--
Michael Harris
Microsoft MVP Scripting
Scripting: Your First Steps
http://www.microsoft.com/technet/scriptcenter/topics/beginner/firststeps.mspx
On Error Resume Next
fso.copyfile dataroot & "DAT" , c_strout
If err.number <> 0 Then
errorlevel=err.number
wsh.LogEvent 1, MaxEPrefix & ScriptName() & " [" & errorLevel & "]
copying data files, aborting."
wscript.quit (errorlevel)
End If
Thanks in advance.
rajesh
Thanks in advance
rajesh