backup of an MS Access

  • Thread starter Thread starter Reny
  • Start date Start date
R

Reny

Can any one help me out in how to take a backup of an MS Access
programatically using VB.NET
 
Can any one help me out in how to take a backup of an MS Access
programatically using VB.NET

Did you mean MDB file? You can just call

System.IO.File.Copy(sourcepath, destinationpath)
 
Back
Top