I want to export forms to other databases. I managed to export tables with:
Dim db as DAO.database
Dim tdf As DAO.TableDef
For Each tdf In db.TableDefs
DoCmd.TransferDatabase acExport, "Microsoft Access", strdbpath, acTable, tdf.Name, tdf.Name
Next
I want to do the same thing with forms but I...