Hi all i was just wondering if there was a way in VB 6.0 to copy a image from a location and move it to another i been searching the forums but couldnt find much
Printable View
Hi all i was just wondering if there was a way in VB 6.0 to copy a image from a location and move it to another i been searching the forums but couldnt find much
to copy a file:
VB Code:
filecopy "c:\my folder\sourcefile.jpg", "c:\other folder\destinationfile.jpg"
or to move it:
VB Code:
Name "c:\my folder\sourcefile.jpg" as "c:\other folder\destinationfile.jpg"
Thanks it worked :D :)