11-29-2009, 08:39 PM
(This post was last modified: 11-29-2009, 08:45 PM by venkatbatchu.)
Hi,
Whaterver the values u want to pass from application A first keep this set of values in one common folder to these two machines (Ex: under Network places) so that by acessing these values from the sharing network folder to application B in another machine.
Note: To copy the shared folder to your local system use the
object.CopyFile ( source, destination[, overwrite] )
Thanks,
Venkat.Batchu
Please find the below one
Whaterver the values u want to pass from application A first keep this set of values in one common folder to these two machines (Ex: under Network places) so that by acessing these values from the sharing network folder to application B in another machine.
Note: To copy the shared folder to your local system use the
object.CopyFile ( source, destination[, overwrite] )
Thanks,
Venkat.Batchu
Please find the below one
Code:
set fso = createobject("Scripting.FileSystemObject")
fso.CopyFile "C:\Documents and Settings\ADMIN\Desktop\Venkat Batchu.doc","C:\Documents and Settings\ADMIN\Desktop\Venkat Batchu1.doc"
msgbox "Done"