I have written the following code to copy a file from one location to another:

For counter2 = 1 To List2.SelCount
Select Case List2.Selected(txtListItem2)
Case 1
FileCopy txtFileSource, txtFileDest

Case 0
MsgBox ("Will not be copied")
End Select

Next counter2

I am having trouble with the FileCopy command, it keeps returning an error '75' message the path/file access error.

HELP, PLEASE!!!