How do I create copies of CurrentDb using VBA

前端 未结 1 625
天涯浪人
天涯浪人 2021-01-22 09:37

I need to create copies of the CurrentDB using VBA (approx. 12 copies). The copies need to be clones of the master database containing all the same forms, queries, etc. except o

相关标签:
1条回答
  • 2021-01-22 10:20

    Looks like you have an extra quote in sDBdest accdb""" And for database copy you can also use

    FileCopy sDBsource, sDBdest
    

    Instead of Scripting object

    0 讨论(0)
提交回复
热议问题