I am trying to use the following to copy a file...
Dim Location As String
Dim Destination As String
Location = frmMain.txtFolder(0).Text & "\xtrain.mdb"
Destination = frmMain.txtFolderDes(1).Text & "\xtrain.mdb"
FileCopy Location, Destination
...But I'm not sure how to take those values so that FileCopy accepts it and copies... any ideas????
Many Thanks... ;o)
Dim Location As String
Dim Destination As String
Location = frmMain.txtFolder(0).Text & "\xtrain.mdb"
Destination = frmMain.txtFolderDes(1).Text & "\xtrain.mdb"
FileCopy Location, Destination
...But I'm not sure how to take those values so that FileCopy accepts it and copies... any ideas????
Many Thanks... ;o)