Search results

  1. S

    Date format when exporting tables to csv files

    Hello! When I run the following code: Private Sub CmdExportFiles_Click() Dim dbs As Database, tb As TableDef Set dbs = CurrentDb For Each tb In dbs.TableDefs If Left(tb.Name, 4) <> "MSys" Then DoCmd.TransferText acExportDelim, , _ tb.Name, "S:\shared\sad\tests\" & tb.Name &...
  2. S

    Avoid System Tables when exporting to csv files

    Hello! When I run the module to export all the tables in an Access database and convert them into csv files, all seems to work but the problem is that the system tables or system objects are exported as well. Can I export only the tables I really want ignoring these "hidden tables" (they contain...
Back
Top Bottom