R RonR Well-known member Joined Nov 23, 2007 Messages 82 Programming Experience 5-10 Nov 24, 2007 #1 how do i access the windows file copy utility? in vb 6 it was: SHFileoperation
F Fremus Active member Joined Jun 9, 2007 Messages 42 Programming Experience Beginner Nov 24, 2007 #2 i never did vb6.. but is it like copying a textfile? to do so, it is done using something like: VB.NET: IO.File.Copy("C:\textFile.txt", "C:\TheCopy2.txt") Upvote 0 Downvote
i never did vb6.. but is it like copying a textfile? to do so, it is done using something like: VB.NET: IO.File.Copy("C:\textFile.txt", "C:\TheCopy2.txt")
R RonR Well-known member Joined Nov 23, 2007 Messages 82 Programming Experience 5-10 Nov 24, 2007 #3 thanks for the code I will give it a try. Upvote 0 Downvote
R RonR Well-known member Joined Nov 23, 2007 Messages 82 Programming Experience 5-10 Nov 25, 2007 #4 i found the code i was looking for. Upvote 0 Downvote
Administrator VB.NET Forum Admin Joined Jun 3, 2004 Messages 1,462 Programming Experience 10+ Nov 25, 2007 #5 Don't forget to try two things: My.Computer.FileSystem <look here> The Snippets that you can access by right-clicking in a code document offers tons of nice code already done for you. Upvote 0 Downvote
Don't forget to try two things: My.Computer.FileSystem <look here> The Snippets that you can access by right-clicking in a code document offers tons of nice code already done for you.
R RonR Well-known member Joined Nov 23, 2007 Messages 82 Programming Experience 5-10 Nov 25, 2007 #6 ok and thanks. Upvote 0 Downvote