when i use this code to copy a text file and paste it in a specific path:
Dim fso As New FileSystemObjec t
fso.CopyFile "C:\Files\file. txt", "C:\Files1\file _copy.txt"
this error appear
compile error
user-defined type not defined
is there a specific reference must be defined?
Dim fso As New FileSystemObjec t
fso.CopyFile "C:\Files\file. txt", "C:\Files1\file _copy.txt"
this error appear
compile error
user-defined type not defined
is there a specific reference must be defined?
Comment