Hi Everyone. I've created a tool that users run to update an existing database they've stored on their server. This tool prevents us from having to redeploy new databases.
Basically, the user opens the update tool (an mdb file) and it fires off several TransferDatabase functions (updating forms, queries, tables, macro, etc.). Everything works except I now need to update a switchboard. I attempted to do this, and it appeared to work (the new switchboard was a differnt color), however, the internal switchboard pages did not reflect the new content. Is there a way to export the details within a switchboard (i.e. control which pages of the switchboard are updated)?
Here's the line of code.
DoCmd.TransferDatabase acExport, "Microsoft Access", FilePath, acForm, "switchboard", "switchboard", False
Basically, the user opens the update tool (an mdb file) and it fires off several TransferDatabase functions (updating forms, queries, tables, macro, etc.). Everything works except I now need to update a switchboard. I attempted to do this, and it appeared to work (the new switchboard was a differnt color), however, the internal switchboard pages did not reflect the new content. Is there a way to export the details within a switchboard (i.e. control which pages of the switchboard are updated)?
Here's the line of code.
DoCmd.TransferDatabase acExport, "Microsoft Access", FilePath, acForm, "switchboard", "switchboard", False