Hi guys,

Is there any example of VBA code that will import a table from an external database into the current database (without using import/export specs)?

I'm thinking something along the lines of -

VB Code:
  1. DoCmd.SetWarnings(False)
  2.  
  3. DoCmd.RunCommand <Import function>, <tablename>, <path to external db>...