Search results

  1. A

    Copy files from and to changing path

    Thanks for the reply! I tried the first option (removed the criteria) and added an error handler. If a folder or file is not found Access jumps to the debugger anyway.
  2. A

    Copy files from and to changing path

    I automated a copy-paste procedure that runs upon clicking a button, see code underneeth. Private Sub Command122_Click() Dim rs As dao.Recordset, strSource, strDest strSource = "D:\FolderA\" strDest = "D:\FolderB\" Set rs = CurrentDb.OpenRecordset("select * from tbl_archief where nieuw=true")...
Back
Top Bottom